X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=.github%2Fworkflows%2Fmain.yml;h=c0dae8e4403bff59441d0d40d2f689b951c4075a;hp=e533fc12e2dcbba3e292ef6065584d34191e44cc;hb=702ae8b37c72e7d1b786dad62ce1885faf4d2af9;hpb=3461631b707c58a4202b54457837b7b159b00717 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e533fc12..c0dae8e4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -17,9 +17,10 @@ jobs: runs-on: ubuntu-latest container: quassel/quassel-build-env:${{ matrix.dist }} strategy: + fail-fast: false matrix: - dist: [ debian-stable, debian-testing, ubuntu-xenial, ubuntu-bionic, ubuntu-eoan, ubuntu-focal ] - cxx: [ gcc, clang++ ] + dist: [ debian-stable, debian-testing, ubuntu-xenial, ubuntu-bionic, ubuntu-focal, ubuntu-groovy ] + cxx: [ 'g++', 'clang++' ] with-kde: [ -DWITH_KDE=ON ] extra-options: [ -DWITH_WEBENGINE=ON ] include: @@ -38,6 +39,7 @@ jobs: CCACHE_BASEDIR: ${{ github.workspace }} CCACHE_DIR: ${{ github.workspace }}/ccache CCACHE_MAXSIZE: 100M + CXX: ${{ matrix.cxx }} steps: - name: Check out source code @@ -91,6 +93,12 @@ jobs: CCACHE_MAXSIZE: 100M steps: + - name: Select Xcode version + uses: maxim-lobanov/setup-xcode@v1 + with: + # Newer Xcode versions may not officially be supported by Qt + xcode-version: '10.3' + - name: Check out source code uses: actions/checkout@v2 with: