Skip to content

Commit

Permalink
add macos CI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Jul 29, 2024
1 parent cb602df commit eed11f8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ jobs:
test:
strategy:
matrix:
target: [cross-v8a, cross-v84a]
runs-on: ubuntu-latest
include:
- system: ubuntu-latest
target: cross-v8a
- system: ubuntu-latest
target: cross-v8a
- system: macos-latest
target: native-mac
runs-on: ${{ matrix.system }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: install dependencies
if: ${{ matrix.system }} == ubuntu-latest
run: sudo apt install gcc-aarch64-linux-gnu qemu-user
- name: Run tests
run: |
Expand Down

0 comments on commit eed11f8

Please sign in to comment.