Skip to content

Commit

Permalink
Use ubuntu-20.04 build environment
Browse files Browse the repository at this point in the history
`ubuntu-18.04` is being deprecated: actions/runner-images#6002
  • Loading branch information
fniephaus committed Aug 8, 2022
1 parent 140ce36 commit 68172f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, ubuntu-20.04-aarch64, macos-11, windows-2019]
os: [ubuntu-20.04, ubuntu-20.04-aarch64, macos-11, windows-2019]
java: [11, 17]
env:
RUN_TESTS: "${{ matrix.os == 'ubuntu-18.04' || matrix.java == 17 }}"
RUN_WITH_COVERAGE: "${{ matrix.os == 'ubuntu-18.04' && matrix.java == 17 }}"
RUN_TESTS: "${{ matrix.os == 'ubuntu-20.04' || matrix.java == 17 }}"
RUN_WITH_COVERAGE: "${{ matrix.os == 'ubuntu-20.04' && matrix.java == 17 }}"
TRUFFLESQUEAK_EXEC: "${{ matrix.os == 'windows-2019' && 'trufflesqueak.cmd' || 'trufflesqueak' }}"
TS_INFIX: "${{ matrix.java == 11 && '_SVM' || '' }}"
MX_ENV: "${{ matrix.java == 11 && 'trufflesqueak-svm' || 'trufflesqueak-jvm' }}"
Expand Down

0 comments on commit 68172f0

Please sign in to comment.