refactor: move SSH match blocks to hosts/contexts #61
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
| # yaml-language-server: $schema=https://www.schemastore.org/github-workflow.json | |
| # DO-NOT-EDIT. This file was auto-generated using github:mightyiam/files. | |
| # Use `nix run .#write-files` to regenerate it. | |
| jobs: | |
| integrate: | |
| name: ${{ matrix.system }} | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: setup | |
| uses: JRMurr/[email protected] | |
| with: | |
| cache-store: true | |
| install-nix: true | |
| - name: lock | |
| run: nix flake lock --no-update-lock-file | |
| - name: build | |
| run: om ci run --extra-experimental-features flakes --extra-experimental-features | |
| nix-command --extra-experimental-features pipe-operators --no-link . -- --accept-flake-config | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| include: | |
| - os: macos-latest | |
| system: aarch64-darwin | |
| - os: ubuntu-24.04-arm | |
| system: aarch64-linux | |
| - os: ubuntu-latest | |
| system: x86_64-linux | |
| system: | |
| - aarch64-darwin | |
| - aarch64-linux | |
| - x86_64-linux | |
| name: Integration | |
| 'on': | |
| push: | |
| branches: | |
| - main | |
| - trunk |