Update dependency python to 3.14 #338
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: "Build" | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-nix | |
| with: | |
| attic_token: ${{ secrets.ATTIC_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: build controller | |
| uses: ./.github/actions/run-command-with-nix-cache-upload | |
| with: | |
| attic_token: ${{ secrets.ATTIC_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| script: timeout 5m nix build .#default --print-build-logs | |
| build-aarch64: | |
| runs-on: ubuntu-22.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-nix | |
| with: | |
| attic_token: ${{ secrets.ATTIC_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: build controller | |
| uses: ./.github/actions/run-command-with-nix-cache-upload | |
| with: | |
| attic_token: ${{ secrets.ATTIC_TOKEN }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| script: timeout 5m nix build .#default --print-build-logs |