fix(hosts/caroline): Remove flag for unstable ZFS since stable is upd… #311
This file contains 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: Check | |
'on': | |
push: | |
branches: | |
- main | |
jobs: | |
check: | |
name: Check flake | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: DeterminateSystems/nix-installer-action@v6 | |
- uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: etu | |
extraPullNames: 'nix-community' | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Check the flake | |
run: 'nix flake check' | |
deploy: | |
name: Deploy systems | |
runs-on: ubuntu-22.04 | |
needs: check | |
# Don't cancel jobs if one job fails | |
continue-on-error: true | |
strategy: | |
matrix: | |
hostname: | |
- server-main-elis | |
- server-sparv | |
- vps04 | |
- vps06 | |
steps: | |
- uses: actions/[email protected] | |
- uses: DeterminateSystems/nix-installer-action@v6 | |
- uses: DeterminateSystems/magic-nix-cache-action@v2 | |
- uses: cachix/cachix-action@v12 | |
with: | |
name: etu | |
extraPullNames: 'nix-community' | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
# Configure SSH key | |
- uses: shimataro/[email protected] | |
with: | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
name: id_ed25519 | |
known_hosts: ${{ secrets.SSH_KNOWN_HOSTS }} | |
# Build systems. | |
- name: Build system derivation | |
uses: nick-fields/[email protected] | |
with: | |
max_attempts: 2 | |
timeout_minutes: 60 | |
command: 'nix build .#nixosConfigurations.${{ matrix.hostname }}.config.system.build.toplevel' | |
# Deploy systems | |
- name: Deploy system | |
uses: nick-fields/[email protected] | |
with: | |
max_attempts: 2 | |
timeout_minutes: 30 | |
command: 'nix develop -c deploy .#${{ matrix.hostname }}' |