feat(spore): expose agentsview at agents.zx.dev #1657
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: | |
| pull_request: | |
| push: | |
| branches: main | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - host: glyph | |
| system: x86_64-linux | |
| runner: ubuntu-latest | |
| - host: Rhizome | |
| system: aarch64-darwin | |
| runner: macos-latest | |
| - host: spore | |
| system: x86_64-linux | |
| runner: ubuntu-latest | |
| - host: zeta | |
| system: aarch64-linux | |
| runner: ubuntu-24.04-arm | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v31 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| extra_nix_config: | | |
| extra-substituters = https://cache.zx.dev/main | |
| extra-trusted-public-keys = main:mu0jkxdJTGWC3djDSEQb3rvZgqlhA8WVMulcTo5IW6c= | |
| - name: Configure Attic cache | |
| run: | | |
| nix profile install --inputs-from . attic#attic-client --fallback | |
| attic login rc https://cache.zx.dev ${{ secrets.ATTIC_TOKEN }} | |
| attic use rc:main | |
| - name: Build system configuration | |
| run: | | |
| if [ "${{ matrix.system }}" = "aarch64-darwin" ]; then | |
| nix build .#darwinConfigurations.${{ matrix.host }}.system | |
| else | |
| nix build .#nixosConfigurations.${{ matrix.host }}.config.system.build.toplevel | |
| fi | |
| - name: Push to Attic | |
| if: github.ref == 'refs/heads/main' | |
| run: | | |
| attic push rc:main ./result | |
| attic push rc:main $(which attic) | |
| nix build .#devShells.${{ matrix.system }}.default -o ./result-devshell | |
| attic push rc:main ./result-devshell |