From: Nathan Moinvaziri Date: Sat, 10 Jul 2021 17:08:53 +0000 (-0700) Subject: Added CI instances for CTZLL and CTZ builtin existence to improve code coverage. X-Git-Tag: 2.1.0-beta1~512 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce3cf80314a470f6a9780d2bf977ec28e342e970;p=thirdparty%2Fzlib-ng.git Added CI instances for CTZLL and CTZ builtin existence to improve code coverage. --- diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 18377740f..aac24c7b2 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -34,6 +34,18 @@ jobs: codecov: ubuntu_gcc_o3 cflags: -O3 + - name: Ubuntu GCC No CTZLL + os: ubuntu-latest + compiler: gcc + cmake-args: -DWITH_OPTIM=OFF -DHAVE_BUILTIN_CTZLL=OFF + codecov: ubuntu_gcc_no_ctzll + + - name: Ubuntu GCC No CTZ + os: ubuntu-latest + compiler: gcc + cmake-args: -DWITH_OPTIM=OFF -DHAVE_BUILTIN_CTZLL=OFF -DHAVE_BUILTIN_CTZ=OFF + codecov: ubuntu_gcc_no_ctz + - name: Ubuntu GCC Link Zlib os: ubuntu-latest compiler: gcc