Skip to content

Commit

Permalink
fix the github actions runners being used for each OS
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed May 19, 2024
1 parent f7bf9a4 commit 0fae23d
Showing 1 changed file with 7 additions and 21 deletions.
28 changes: 7 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,29 +27,15 @@ jobs:
fail-fast: false
matrix:
include:
- {
name: "Linux-x86_64",
target: x86_64-unknown-linux-musl,
os: ubuntu-20.04,
}
- {
name: "Linux-aarch64",
target: aarch64-unknown-linux-musl,
os: ubuntu-latest,
}
- {
name: "macOS-x86_64",
target: x86_64-apple-darwin,
os: macOS-latest,
}
- {
name: "macOS-aarch64",
target: aarch64-apple-darwin,
os: macOS-latest,
}
- { name: "Linux-x86_64", target: x86_64-linux, os: ubuntu-20.04 }
# No arm linux OS available on github actions.
# Find another way.
# - { name: "Linux-aarch64", target: aarch64-linux, os: ubuntu-latest }
- { name: "macOS-x86_64", target: x86_64-darwin, os: macOS-13 }
- { name: "macOS-aarch64", target: aarch64-darwin, os: macOS-14 }
# - {
# name: "windows-x86_64",
# target: x86_64-pc-windows-msvc,
# target: x86_64-windows,
# os: windows-latest,
# }
steps:
Expand Down

0 comments on commit 0fae23d

Please sign in to comment.