Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
strategy:
matrix:
systems:
# we also use this for x86_64-darwin
- nix-system: aarch64-darwin
runner: macos-15
system: ARM64-macOS
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ jobs:
- name: Create the artifacts directory
run: rm -rf ./artifacts && mkdir ./artifacts

# x86_64-darwin (uses the aarch64-darwin build)
- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
path: cache-binary-X64-macOS
- name: Persist the cache binary
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS

- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/release-prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ jobs:
- name: Create the artifacts directory
run: rm -rf ./artifacts && mkdir ./artifacts

# x86_64-darwin (uses the aarch64-darwin build)
- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
path: cache-binary-X64-macOS
- name: Persist the cache binary
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS

- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/release-tags.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
- name: Create the artifacts directory
run: rm -rf ./artifacts && mkdir ./artifacts

# x86_64-darwin (uses the aarch64-darwin build)
- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
path: cache-binary-X64-macOS
- name: Persist the cache binary
run: cp ./cache-binary-X64-macOS/flake-checker ./artifacts/X64-macOS

- uses: actions/download-artifact@v4.1.7
with:
name: flake-checker-ARM64-macOS
Expand Down Expand Up @@ -55,6 +63,7 @@ jobs:

- name: Rename binaries for GH release
run: |
mv ./artifacts/{,flake-checker-}X64-macOS
mv ./artifacts/{,flake-checker-}ARM64-macOS
mv ./artifacts/{,flake-checker-}X64-Linux
mv ./artifacts/{,flake-checker-}ARM64-Linux
Expand Down