From 325879e208728b81e1b3412c47ace6173ace7dbb Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Fri, 14 Apr 2023 14:44:14 -0600 Subject: [PATCH] Test jammy releases. --- .github/workflows/precice-ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/precice-ci.yml b/.github/workflows/precice-ci.yml index ffda49c..703fd92 100644 --- a/.github/workflows/precice-ci.yml +++ b/.github/workflows/precice-ci.yml @@ -10,7 +10,7 @@ on: jobs: build: - name: Build ${{ matrix.build_type }}-dealii:${{ matrix.dealii_version }} + name: Build ${{ matrix.build_type }}-dealii:${{ matrix.dealii_version }}-${{ matrix.ubuntu_version }} runs-on: ubuntu-latest strategy: @@ -18,17 +18,18 @@ jobs: matrix: build_type: ["Debug"] dealii_version: ["master", "v9.4.0"] + ubuntu_version: ["jammy"] container: - image: dealii/dealii:${{ matrix.dealii_version }}-focal + image: dealii/dealii:${{ matrix.dealii_version }}-${{ matrix.ubuntu_version }} options: --user root steps: - name: Install preCICE run: | sudo apt-get -y update - wget https://github.com/precice/precice/releases/download/v2.5.0/libprecice2_2.5.0_focal.deb - sudo apt-get -y install ./libprecice2_2.5.0_focal.deb + wget https://github.com/precice/precice/releases/download/v2.5.0/libprecice2_2.5.0_${{ matrix.ubuntu_version }}.deb + sudo apt-get -y install ./libprecice2_2.5.0_${{ matrix.ubuntu_version }}.deb - uses: actions/checkout@v3 -- 2.39.5