From: Dan Kegel Date: Thu, 4 Feb 2021 01:45:23 +0000 (-0800) Subject: .github: Test with old gcc and clang by using oldest supported ubuntu. X-Git-Tag: 2.0.0~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43eecaf11d9b3793d2e2f8e9c33f9f04b2899c63;p=thirdparty%2Fzlib-ng.git .github: Test with old gcc and clang by using oldest supported ubuntu. (Getting compiler version is harder than it sounds :-( so skipping that for now.) --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 5dfec303..cebf61be 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -8,6 +8,10 @@ jobs: fail-fast: false matrix: include: + - name: Ubuntu 16.04 GCC + os: ubuntu-16.04 + compiler: gcc + - name: Ubuntu GCC os: ubuntu-latest compiler: gcc @@ -243,6 +247,11 @@ jobs: # Limit parallel test jobs to prevent wine errors parallels-jobs: 2 + - name: Ubuntu 16.04 Clang + os: ubuntu-16.04 + compiler: clang-6.0 + # note: github preinstalls compilers now, see https://github.com/actions/virtual-environments/pull/369/ + - name: Ubuntu Clang os: ubuntu-latest compiler: clang diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index e2df2796..c3bc8678 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -13,6 +13,11 @@ jobs: compiler: gcc configure-args: --warn + - name: Ubuntu 16.04 GCC + os: ubuntu-16.04 + compiler: gcc + configure-args: --warn + - name: Ubuntu GCC OSB os: ubuntu-latest compiler: gcc