Skip to content

Commit 7339c22

Browse files
authored
Merge pull request #3344 from stan-dev/fix/gha-ubuntu-deprecation
Update GHA for ubuntu-20.04 removal
2 parents 0b95847 + 0858949 commit 7339c22

1 file changed

Lines changed: 4 additions & 16 deletions

File tree

.github/workflows/testing.yml

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,13 @@ on:
1818
jobs:
1919
run-tests:
2020
name: run stan tests
21-
runs-on: ${{ matrix.os }}
22-
strategy:
23-
matrix:
24-
os: [ubuntu-20.04]
25-
python-version: [3.8]
26-
fail-fast: false
21+
runs-on: ubuntu-24.04
22+
container: stanorg/ci:gpu
2723
steps:
2824
- name: Check out source code
2925
uses: actions/checkout@v3
3026
with:
3127
submodules: true
32-
- name: Install clang++
33-
run: sudo apt-get install clang-${{ env.clangppVersion }}++
3428
- name: Run tests
3529
run: |
3630
echo "CXX=clang++-${{ env.clangppVersion }}" >> make/local
@@ -39,19 +33,13 @@ jobs:
3933
4034
run-fvar-var-tests:
4135
name: run stan fvar-var model tests
42-
runs-on: ${{ matrix.os }}
43-
strategy:
44-
matrix:
45-
os: [ubuntu-20.04]
46-
python-version: [3.8]
47-
fail-fast: false
36+
runs-on: ubuntu-24.04
37+
container: stanorg/ci:gpu
4838
steps:
4939
- name: Check out source code
5040
uses: actions/checkout@v3
5141
with:
5242
submodules: true
53-
- name: Install clang++
54-
run: sudo apt-get install clang-${{ env.clangppVersion }}++
5543
- name: Run tests
5644
run: |
5745
echo "CXX=clang++-${{ env.clangppVersion }}" >> make/local

0 commit comments

Comments
 (0)