Skip to content

Commit

Permalink
fix: release definition to use a more recent ubuntu, to get linux bin…
Browse files Browse the repository at this point in the history
…aries. (#160)

Otherwise there are no linux runners who can satisfy the request, and they hang forever,
instead of saying something useful.
  • Loading branch information
Byron committed May 5, 2023
1 parent 9c07301 commit 3e8509d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ jobs:
build: [linux, linux-arm, macos, win-msvc, win-gnu, win32-msvc]
include:
- build: linux
os: ubuntu-18.04
os: ubuntu-latest
rust: stable
target: x86_64-unknown-linux-musl
- build: linux-arm
os: ubuntu-18.04
os: ubuntu-latest
rust: nightly
target: arm-unknown-linux-gnueabihf
- build: macos
Expand All @@ -110,7 +110,7 @@ jobs:
fetch-depth: 1

- name: Install packages (Ubuntu)
if: matrix.os == 'ubuntu-18.04'
if: matrix.os == 'ubuntu-latest'
run: |
ci/ubuntu-install-packages
Expand Down

0 comments on commit 3e8509d

Please sign in to comment.