aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f84356b0..40ed85d1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -19,7 +19,7 @@ jobs:
fail-fast: false
max-parallel: 1
matrix:
- os: [ ubuntu-20.04, macos-11 ]
+ os: [ ubuntu-22.04, macos-11 ]
qt-version: [ '6.3.1', '5.15.2' ]
compiler: [ LLVM ]
# Not using binary values here, to make the job captions more readable
@@ -31,7 +31,7 @@ jobs:
exclude:
- qt-version: '6.3.1'
update-api: update-api # Generated code is not specific to Qt version
- - os: ubuntu-20.04
+ - os: ubuntu-22.04
e2ee: e2ee # Will be re-added with static analysis below
# TODO: Enable E2EE on Windows and macOS
- os: macos-11
@@ -42,7 +42,7 @@ jobs:
compiler: MSVC
platform: x64
qt-arch: win64_msvc2019_64
- - os: ubuntu-20.04
+ - os: ubuntu-22.04
qt-version: '5.15.2'
compiler: LLVM
e2ee: e2ee
@@ -57,7 +57,7 @@ jobs:
compiler: GCC
e2ee: e2ee
update-api: update-api
- - os: ubuntu-20.04
+ - os: ubuntu-22.04
qt-version: '5.15.2'
compiler: LLVM
update-api: update-api
@@ -106,6 +106,7 @@ jobs:
sed -i 's/ThreadEngineStarter<void>(ThreadEngine<void> \*_threadEngine)/ThreadEngineStarter(ThreadEngine<void> \*_threadEngine)/' \
$Qt5_DIR/include/QtConcurrent/qtconcurrentthreadengine.h
fi
+ echo "VALGRIND=valgrind --tool=memcheck --leak-check=yes --gen-suppressions=all --suppressions=$GITHUB_WORKSPACE/quotest/.valgrind.supp" >>$GITHUB_ENV
elif [[ '${{ runner.os }}' != 'Windows' ]]; then
echo "CC=clang" >>$GITHUB_ENV
echo "CXX=clang++" >>$GITHUB_ENV
@@ -155,7 +156,6 @@ jobs:
echo "QUOTEST_ORIGIN=$QUOTEST_ORIGIN with E2EE" >>$GITHUB_ENV
fi
sudo apt-get -qq install ninja-build valgrind $EXTRA_DEPS
- echo "VALGRIND=valgrind --tool=memcheck --leak-check=yes --gen-suppressions=all --suppressions=$GITHUB_WORKSPACE/quotest/.valgrind.supp" >>$GITHUB_ENV
- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1