This repository was archived by the owner on Dec 2, 2025. It is now read-only.
v0.44.0 #25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ci | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| test: | |
| runs-on: linux-arm64 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: DeterminateSystems/nix-installer-action@main | |
| - uses: DeterminateSystems/magic-nix-cache-action@main | |
| - name: Test Linux ARM64 | |
| run: | | |
| nix build .#cursor.linux.arm64-targz | |
| file result/* | |
| nix build .#cursor.linux.arm64-appimage | |
| file result/* | |
| rm -rf result | |
| - name: Test Linux ARM32 builds | |
| run: | | |
| nix build .#cursor.linux.arm32-targz | |
| file result/* | |
| nix build .#cursor.linux.arm32-appimage | |
| file result/* | |
| rm -rf result | |
| - name: Test Windows ARM64 build | |
| run: | | |
| nix build .#cursor.windows.arm64-zip | |
| file result/* | |
| rm -rf result | |
| - name: Test Nix build | |
| run: | | |
| nix build .#cursor.nix | |
| cd result && ls -alh |