Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
Remove target from matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
neysofu committed Jan 21, 2022
1 parent 1df1dc1 commit 00f3d9d
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
profile: [release]
include:
- os: ubuntu-latest
cargo-targets: ["x86_64-unknown-linux-gnu"]
- os: macos-latest
cargo-target: ["aarch64-apple-darwin", "x86_64-apple-darwin"]
- os: windows-latest
cargo-target: ["x86_64-pc-windows-msvc"]
steps:
- name: Checkout Code
uses: actions/checkout@v2
Expand All @@ -59,7 +52,13 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --target ${{ matrix.cargo-target }} --release -p svm-runtime-ffi -p svm-cli --no-default-features
args: --release -p svm-runtime-ffi -p svm-cli --no-default-features
- name: Cargo Build (Apple Silicon)
if: matrix.os == 'macos-latest'
uses: actions-rs/cargo@v1
with:
command: build
args: --target aarch64-apple-darwin --release -p svm-runtime-ffi -p svm-cli --no-default-features
- name: Prepare Artifacts
run: |
ls target
Expand Down

0 comments on commit 00f3d9d

Please sign in to comment.