Skip to content

Commit 25a90cc

Browse files
committed
Use the ubuntu-20.04 runner as 18.04 is deprecated
1 parent a9bbad6 commit 25a90cc

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,17 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [macos-latest, macos-arm, ubuntu-18.04, windows-latest]
14+
# Stay on the oldest Ubuntu version that's still supported by Github Actions
15+
# to avoid glibc incompatibilities as far as possible.
16+
os: [macos-latest, macos-arm, ubuntu-20.04, windows-latest]
1517
# syntax explanation:
1618
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-additional-values-into-combinations
1719
include:
1820
- os: macos-latest
1921
artifact-folder: darwin
2022
- os: macos-arm
2123
artifact-folder: darwinarm64
22-
- os: ubuntu-18.04
24+
- os: ubuntu-20.04
2325
artifact-folder: linux
2426
- os: windows-latest
2527
artifact-folder: win32
@@ -80,7 +82,7 @@ jobs:
8082

8183
package:
8284
needs: test
83-
runs-on: ubuntu-18.04
85+
runs-on: ubuntu-20.04
8486

8587
steps:
8688
- uses: actions/[email protected]
@@ -112,7 +114,7 @@ jobs:
112114
- name: Download Linux binary
113115
uses: actions/[email protected]
114116
with:
115-
name: ubuntu-18.04
117+
name: ubuntu-20.04
116118
path: ./server/analysis_binaries
117119
- run: tar -xvf binary.tar
118120
working-directory: ./server/analysis_binaries

0 commit comments

Comments
 (0)