Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/TestJuliaVersions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
continue-on-error: true
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-noble]
julia-version: ['1.10.0', 'nightly']

steps:
Expand All @@ -28,16 +28,16 @@ jobs:
id: cache-libprecice
uses: actions/cache@v4
with:
path: libprecice3_3.1.0_focal.deb
key: libprecice3_3.1.0_focal.deb1
restore-keys: libprecice3_3.1.0_focal.deb1
path: libprecice3_3.3.0_noble.deb
key: libprecice3_3.3.0_noble.deb1
restore-keys: libprecice3_3.3.0_noble.deb1

- name: Download preCICE
if: steps.cache-libprecice.outputs.cache-hit != 'true'
run: wget https://github.com/precice/precice/releases/download/v3.1.0/libprecice3_3.1.0_focal.deb
run: wget https://github.com/precice/precice/releases/download/v3.3.0/libprecice3_3.3.0_noble.deb

- name: Install preCICE
run: sudo apt install ./libprecice3_3.1.0_focal.deb
run: sudo apt install ./libprecice3_3.3.0_noble.deb

- name: Build Package
uses: julia-actions/julia-buildpkg@v1
Expand Down
Loading