Skip to content

Commit

Permalink
Update matrix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wrkzdev committed Dec 26, 2019
1 parent 5f033de commit e4ea07c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
[
x86_64-pc-windows-msvc,
aarch64-unknown-linux-gnu,
armv7-unknown-linux-gnueabihf,
x86_64-apple-darwin,
x86_64-unknown-linux-gnu,
]
Expand All @@ -24,6 +25,8 @@ jobs:
os: windows-latest
- target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- target: armv7-unknown-linux-gnueabihf
os: ubuntu-latest
- target: x86_64-apple-darwin
os: macos-latest
- target: x86_64-unknown-linux-gnu
Expand Down Expand Up @@ -51,7 +54,11 @@ jobs:

- name: Build aarch64
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: package-arm64
run: yarn package-arm64

- name: Build armv7
if: matrix.target == 'armv7-unknown-linux-gnueabihf'
run: yarn package-arm

- name: Build Non-aarch64
if: matrix.target != 'aarch64-unknown-linux-gnu'
Expand Down

0 comments on commit e4ea07c

Please sign in to comment.