Skip to content

Commit

Permalink
re-add runs-on
Browse files Browse the repository at this point in the history
Signed-off-by: Nathanael DEMACON <ndemacon@scaleway.com>
  • Loading branch information
quantumsheep committed Feb 16, 2024
1 parent 86e1f91 commit d2a4c5b
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,28 @@ jobs:
- os: linux
arch: "amd64"
rust-target: "x86_64-unknown-linux-gnu"
runs-on: ubuntu-latest
- os: linux
arch: "arm64"
rust-target: "aarch64-unknown-linux-gnu"
runs-on: ubuntu-latest
- os: darwin
arch: "amd64"
rust-target: "x86_64-apple-darwin"
runs-on: macos-latest
- os: darwin
arch: "arm64"
rust-target: "aarch64-apple-darwin"
runs-on: macos-latest
- os: windows
arch: "amd64"
rust-target: "x86_64-pc-windows-msvc"
runs-on: windows-latest
- os: windows
arch: "arm64"
rust-target: "aarch64-pc-windows-msvc"
runs-on: ubuntu-latest
runs-on: windows-latest
runs-on: ${{ matrix.target.runs-on }}
name: Build and save artifact
steps:
- uses: actions/checkout@v4
Expand All @@ -86,8 +92,6 @@ jobs:

- run: rustup toolchain install stable --profile minimal --target ${{ matrix.target.rust-target }} --no-self-update

- run: cargo install cross --git https://github.com/cross-rs/cross

- uses: Swatinem/rust-cache@v2

- name: Build
Expand Down

0 comments on commit d2a4c5b

Please sign in to comment.