Skip to content

Commit

Permalink
Update distributions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lamyj committed Jan 26, 2024
1 parent 7c5cfb9 commit 8d63f5e
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,16 @@ jobs:
fail-fast: false
matrix:
include:
- name: "Debian 10 (Buster)"
os: ubuntu-latest
ci_type: deb
start_worker: "docker run -di -v ${WORKSPACE}:${WORKSPACE} --name worker --rm debian:buster"
worker: "docker exec -w ${WORKSPACE} -e WORKSPACE -e CMAKE_OPTIONS -e DEBIAN_FRONTEND=noninteractive worker"
stop_worker: "docker kill worker"
- name: "Debian 11 (Bullseye)"
os: ubuntu-latest
ci_type: deb
start_worker: "docker run -di -v ${WORKSPACE}:${WORKSPACE} --name worker --rm debian:bullseye"
worker: "docker exec -w ${WORKSPACE} -e WORKSPACE -e CMAKE_OPTIONS -e DEBIAN_FRONTEND=noninteractive worker"
stop_worker: "docker kill worker"
- name: "Ubuntu 18.04 (Bionic)"
- name: "Debian 12 (Bookworm)"
os: ubuntu-latest
ci_type: deb
start_worker: "docker run -di -v ${WORKSPACE}:${WORKSPACE} --name worker --rm ubuntu:bionic"
start_worker: "docker run -di -v ${WORKSPACE}:${WORKSPACE} --name worker --rm debian:bookworm"
worker: "docker exec -w ${WORKSPACE} -e WORKSPACE -e CMAKE_OPTIONS -e DEBIAN_FRONTEND=noninteractive worker"
stop_worker: "docker kill worker"
- name: "Ubuntu 20.04 (Focal)"
Expand Down Expand Up @@ -52,7 +46,7 @@ jobs:
echo "WORKSPACE=${GITHUB_WORKSPACE}" >> $GITHUB_ENV
echo "CMAKE_OPTIONS=${{ matrix.cmake_options }}" >> $GITHUB_ENV
- name: Checkout latest revision
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Start the worker
run: ${{ matrix.start_worker }}
- name: Configure the build
Expand Down

0 comments on commit 8d63f5e

Please sign in to comment.