Fix propagatedBuildInputs typo in Swift CLI derivation #56
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: QA | |
| on: [ pull_request ] | |
| jobs: | |
| flake-check: | |
| name: Nix Flake Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| - name: Nix Flake Checks | |
| run: nix flake check --all-systems | |
| nixos-tests: | |
| runs-on: large_runner_16core_64gb | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: cachix/install-nix-action@v30 | |
| - name: Basic setup | |
| run: | | |
| nix build .#tests.x86_64-linux.openstack-default-setup.driver | |
| ./result/bin/nixos-test-driver | |
| - name: Live migration | |
| run: | | |
| nix build .#tests.x86_64-linux.openstack-live-migration.driver | |
| ./result/bin/nixos-test-driver |