File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff 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
8082
8183 package :
8284 needs : test
83- runs-on : ubuntu-18 .04
85+ runs-on : ubuntu-20 .04
8486
8587 steps :
8688 - uses : actions/checkout@v2.3.4
@@ -112,7 +114,7 @@ jobs:
112114 - name : Download Linux binary
113115 uses : actions/download-artifact@v3.0.0
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
You can’t perform that action at this time.
0 commit comments