From 142b89540d91b52e7763d2689777cc076b752c22 Mon Sep 17 00:00:00 2001 From: Matthias Klumpp Date: Thu, 28 Jan 2021 01:52:18 +0100 Subject: [PATCH] ci: Properly ignore GDC build failures (for now) --- .github/workflows/build-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 4c3fa736..bcb7058a 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -6,10 +6,10 @@ jobs: build-debian-testing: name: Debian Testing runs-on: ubuntu-latest - continue-on-error: ${{ matrix.dc == 'gdc' }} strategy: matrix: dc: [ldc, gdc] + steps: - uses: actions/checkout@v2 @@ -17,5 +17,6 @@ jobs: run: cd tests/ci/ && docker build -t asgen -f ./Dockerfile . - name: Build & Test + continue-on-error: ${{ matrix.dc == 'gdc' }} run: docker run -t -e DC=${{ matrix.dc }} -v `pwd`:/build asgen ./tests/ci/build-and-test.sh