Update example/simple/flake.lock #1128
Workflow file for this run
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: | |
| checks: | |
| runs-on: ${{ matrix.runner }} | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| include: | |
| - runner: x86_64-linux | |
| system: x86_64-linux | |
| # Our Mac Studios are b0rked, so we use GitHub mac runner. | |
| - runner: macos-latest | |
| system: aarch64-darwin | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # ⤵️ The steps are run only on GitHub runners | |
| - name: "Install Nix" | |
| if: matrix.runner == 'macos-latest' | |
| uses: DeterminateSystems/nix-installer-action@main | |
| - name: "Install attic and omnix" | |
| if: matrix.runner == 'macos-latest' | |
| run: | | |
| nix profile install nixpkgs#omnix | |
| # ⤴️ | |
| - name: "Cachix: Configure" | |
| uses: cachix/cachix-action@v14 | |
| with: | |
| name: services-flake | |
| authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}" | |
| skipPush: true | |
| # The default `installCommand` fails with: | |
| # ``` | |
| # /bin/bash -c nix-env --quiet -j8 -iA cachix -f https://cachix.org/api/v1/install | |
| # error: profile '/Users/runner/.local/state/nix/profiles/profile' is incompatible with 'nix-env'; please use 'nix profile' instead | |
| # ``` | |
| installCommand: "nix profile install nixpkgs#cachix" | |
| - name: Build all flake outputs | |
| run: om ci run --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" --systems "${{ matrix.system }}" | |
| - name: "Cachix: Push" | |
| if: github.ref == 'refs/heads/main' | |
| run: nix --option system "${{ matrix.system }}" run ./dev#cachix-push |