Skip to content

Commit

Permalink
[ci] Use Ubuntu 20.04 to build the prebuilt binary for Linux
Browse files Browse the repository at this point in the history
The Ubuntu 18.04 Actions runner image is no longer supported.
  • Loading branch information
lpinca committed Oct 15, 2023
1 parent dc7d1dd commit ee7a25f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -50,13 +50,13 @@ jobs:
- x86
os:
- macos-latest
- ubuntu-18.04
- ubuntu-20.04
- windows-latest
exclude:
- arch: x86
os: macos-latest
- arch: x86
os: ubuntu-18.04
os: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
Expand All @@ -69,7 +69,7 @@ jobs:
- run: |
npm run prebuild
npm run prebuild-linux-musl-x64
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-20.04'
- run: npm run prebuild
if: matrix.os == 'windows-latest'
- uses: actions/upload-artifact@v3
Expand All @@ -94,7 +94,7 @@ jobs:
}}-darwin-x64+arm64.tar" -C "prebuilds/macos-latest" .
- run:
tar -cvf "${{ steps.get_version.outputs.version }}-linux-x64.tar" -C
"prebuilds/ubuntu-18.04" linux-x64
"prebuilds/ubuntu-20.04" linux-x64
- run:
tar -cvf "${{ steps.get_version.outputs.version }}-win32-ia32.tar" -C
"prebuilds/windows-latest" win32-ia32
Expand Down

0 comments on commit ee7a25f

Please sign in to comment.