Skip to content

Commit

Permalink
ci: use Debian 12 (instead of Debian 11) for GitLab CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jun 26, 2023
1 parent 2f7d08e commit f224337
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
coverage:
image: debian:11-slim
image: debian:12-slim
stage: test
before_script:
- apt-get update && apt-get -y upgrade
- apt-get install -y catch cmake g++-10 lcov libsqlite3-dev pkg-config
- apt-get install -y catch2 cmake g++-12 lcov libsqlite3-dev pkg-config
script:
# build
- export CXX=g++-10
- export CC=gcc-10
- export CXX=g++-12
- export CC=gcc-12
- mkdir build-coverage
- cd build-coverage
- cmake -DCODE_COVERAGE=ON ../
Expand Down Expand Up @@ -59,7 +59,7 @@ fedora:
- ctest -V

pages:
image: debian:11-slim
image: debian:12-slim
stage: deploy
needs: ["coverage"]
dependencies:
Expand All @@ -71,7 +71,7 @@ pages:
- public

package_debian:
image: debian:11-slim
image: debian:12-slim
stage: build
before_script:
- ./ci/01-install-dependencies.sh
Expand Down

0 comments on commit f224337

Please sign in to comment.