Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
ci: add aarch64-darwin checks
Browse files Browse the repository at this point in the history
  • Loading branch information
marijanp committed Feb 1, 2024
1 parent 57de06d commit 360aad3
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, macos-14]
steps:
- uses: actions/checkout@v3
- uses: DeterminateSystems/nix-installer-action@main
Expand All @@ -33,6 +33,12 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: nix build -L --no-link --show-trace .#packages.x86_64-linux.r0vm

- name: template
if: matrix.os == 'ubuntu-latest'
run: |
git config --global init.defaultBranch main
./scripts/use-template.sh
- name: rustc0
if: matrix.os == 'macos-latest'
run: nix build -L --no-link --show-trace .#packages.x86_64-darwin.rustc0
Expand All @@ -42,13 +48,21 @@ jobs:
run: nix build -L --no-link --show-trace .#packages.x86_64-darwin.r0vm

- name: template
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'macos-latest'
run: |
git config --global init.defaultBranch main
./scripts/use-template.sh
- name: rustc0
if: matrix.os == 'macos-14'
run: nix build -L --no-link --show-trace .#packages.aarch64-darwin.rustc0

- name: r0vm
if: matrix.os == 'macos-14'
run: nix build -L --no-link --show-trace .#packages.aarch64-darwin.r0vm

- name: template
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-14'
run: |
git config --global init.defaultBranch main
./scripts/use-template.sh

0 comments on commit 360aad3

Please sign in to comment.