fix(ci): #747
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: Nix CI | |
| "on": | |
| pull_request: | |
| push: | |
| branches: [master] | |
| schedule: | |
| - cron: 0 0 * * * | |
| workflow_dispatch: {} | |
| env: | |
| nix_conf: access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} | |
| substituters = https://cache.nixos.org/ https://nix-community.cachix.org https://cache.iog.io | |
| trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= | |
| jobs: | |
| test: | |
| name: Test extensions | |
| permissions: | |
| actions: write | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-24.04-arm | |
| - macos-13 | |
| - macos-15 | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: nixbuild/nix-quick-install-action@v30 | |
| with: | |
| nix_conf: ${{ env.nix_conf }} | |
| - uses: nix-community/cache-nix-action/restore@v6 | |
| with: | |
| primary-key: nix-test-${{ runner.os }}-${{ runner.arch }}-${{ hashfiles('**/flake.nix', '**/flake.lock', '**/*.nix') }} | |
| restore-prefixes-first-match: nix-test-${{ runner.os }}-${{ runner.arch }}- | |
| - name: Build VS Codium with extensions | |
| run: nix build | |
| - name: Check flake | |
| run: nix flake check | |
| - uses: nix-community/cache-nix-action/save@v6 | |
| if: always() | |
| with: | |
| primary-key: nix-test-${{ runner.os }}-${{ runner.arch }}-${{ hashfiles('**/flake.nix', '**/flake.lock', '**/*.nix') }} | |
| gc-max-store-size-linux: 7500000000 | |
| purge: true | |
| purge-prefixes: nix-test-${{ runner.os }}-${{ runner.arch }}- | |
| purge-created: 0 | |
| purge-primary-key: never | |
| update: | |
| name: Update data and flakes | |
| needs: test | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| if: github.ref_name == 'master' | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: nixbuild/nix-quick-install-action@v30 | |
| with: | |
| nix_conf: ${{ env.nix_conf }} | |
| - uses: nix-community/cache-nix-action/restore@v6 | |
| with: | |
| primary-key: nix-update-${{ hashfiles('{.,nix-dev}/*.{nix,lock}', 'haskell') }} | |
| restore-prefixes-first-match: nix-update- | |
| - name: Configure git | |
| env: | |
| # required for gh | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| git config --global user.name "github-actions[bot]" | |
| - name: Pull latest changes | |
| run: git pull --rebase --autostash | |
| - name: Update flake locks | |
| run: | | |
| (cd nix-dev; nix flake update) | |
| (cd template; nix flake update) | |
| - name: Format Nix files | |
| run: nix fmt | |
| - name: Update extensions | |
| run: nix run nix-dev/#updateExtensions -- --config .github/config.yaml | |
| - name: Update extra extensions | |
| run: nix run nix-dev/#updateExtraExtensions | |
| - name: Commit and push changes | |
| run: |- | |
| git pull --rebase --autostash | |
| git add . | |
| git commit \ | |
| -m "action" \ | |
| -m "Update flake locks" \ | |
| -m "Update extensions" \ | |
| -m "Update extra extensions" \ | |
| || echo "commit failed!" | |
| git push | |
| - uses: nix-community/cache-nix-action/save@v6 | |
| if: always() | |
| with: | |
| primary-key: nix-update-${{ hashfiles('{.,nix-dev}/*.{nix,lock}', 'haskell') }} | |
| gc-max-store-size-linux: 7500000000 | |
| purge: true | |
| purge-prefixes: nix-update- | |
| purge-created: 0 | |
| purge-primary-key: never | |
| test-template: | |
| name: Test template works | |
| needs: update | |
| permissions: | |
| actions: write | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04 | |
| - ubuntu-24.04-arm | |
| - macos-13 | |
| - macos-15 | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| steps: | |
| - name: Checkout this repo | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: nixbuild/nix-quick-install-action@v30 | |
| with: | |
| nix_conf: ${{env.nix_conf}} | |
| - name: Restore and cache Nix store | |
| uses: nix-community/cache-nix-action/restore@v6 | |
| with: | |
| primary-key: nix-template-${{ runner.os }}-${{ runner.arch }}-${{ hashfiles('template/flake.nix', 'template/flake.lock') }} | |
| - name: Pull latest changes | |
| run: git pull --rebase --autostash | |
| - name: Check template VSCodium | |
| run: nix develop template/# -c code --list-extensions | |
| - uses: nix-community/cache-nix-action/save@v6 | |
| if: always() | |
| with: | |
| primary-key: nix-template-${{ runner.os }}-${{ runner.arch }}-${{ hashfiles('template/flake.nix', 'template/flake.lock') }} | |
| purge: true | |
| purge-prefixes: nix-template-${{ runner.os }}-${{ runner.arch }}- | |
| purge-created: 0 | |
| purge-primary-key: never |