diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-09-02 22:18:14 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-09-03 06:53:28 +0200 |
commit | ee678fac0ee09c6262c7a39b2b1072660e6db9ca (patch) | |
tree | 0f8d5e63b7920754162ebe6c06083edd0b9d1656 /.github/workflows | |
parent | f14b04157a9cacaf60f815f164939cc42dad04da (diff) | |
download | libquotient-ee678fac0ee09c6262c7a39b2b1072660e6db9ca.tar.gz libquotient-ee678fac0ee09c6262c7a39b2b1072660e6db9ca.zip |
CI experiment: requires GCC 10 and Clang 11
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 670153eb..47e31d55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,16 +72,17 @@ jobs: - name: Setup build environment run: | if [ "${{ matrix.compiler }}" == "GCC" ]; then - if [ -n "${{ matrix.update-api }}" ]; then VERSION_POSTFIX='-9'; fi - echo "CC=gcc$VERSION_POSTFIX" >>$GITHUB_ENV - echo "CXX=g++$VERSION_POSTFIX" >>$GITHUB_ENV + CXX_VERSION_POSTFIX='-10' + echo "CC=gcc$CXX_VERSION_POSTFIX" >>$GITHUB_ENV + echo "CXX=g++$CXX_VERSION_POSTFIX" >>$GITHUB_ENV elif [[ '${{ matrix.compiler }}' == 'Clang' ]]; then - echo "CC=clang" >>$GITHUB_ENV - echo "CXX=clang++" >>$GITHUB_ENV if [[ '${{ runner.os }}' == 'Linux' ]]; then + CXX_VERSION_POSTFIX='-11' # Do CodeQL analysis on one of Linux branches echo "CODEQL_ANALYSIS=true" >>$GITHUB_ENV fi + echo "CC=clang$CXX_VERSION_POSTFIX" >>$GITHUB_ENV + echo "CXX=clang++$CXX_VERSION_POSTFIX" >>$GITHUB_ENV fi if grep -q 'refs/tags' <<<'${{ github.ref }}'; then VERSION="$(git describe --tags)" |