Skip to content

Use the ubuntu-20.04 runner as 18.04 is deprecated #567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2022
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
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-latest, macos-arm, ubuntu-18.04, windows-latest]
# Stay on the oldest Ubuntu version that's still supported by Github Actions
# to avoid glibc incompatibilities as far as possible.
os: [macos-latest, macos-arm, ubuntu-20.04, windows-latest]
# syntax explanation:
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#example-including-additional-values-into-combinations
include:
- os: macos-latest
artifact-folder: darwin
- os: macos-arm
artifact-folder: darwinarm64
- os: ubuntu-18.04
- os: ubuntu-20.04
artifact-folder: linux
- os: windows-latest
artifact-folder: win32
Expand Down Expand Up @@ -80,7 +82,7 @@ jobs:

package:
needs: test
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04

steps:
- uses: actions/[email protected]
Expand Down Expand Up @@ -112,7 +114,7 @@ jobs:
- name: Download Linux binary
uses: actions/[email protected]
with:
name: ubuntu-18.04
name: ubuntu-20.04
path: ./server/analysis_binaries
- run: tar -xvf binary.tar
working-directory: ./server/analysis_binaries
Expand Down