|
@@ -129,7 +129,7 @@ jobs:
|
|
|
features: builder,unstable
|
|
|
|
|
|
integrationtest:
|
|
|
- name: multiboot2 integrationtest
|
|
|
+ name: integrationtest
|
|
|
needs:
|
|
|
- build_nightly
|
|
|
- build_nostd_nightly
|
|
@@ -138,4 +138,11 @@ jobs:
|
|
|
- name: Check out
|
|
|
uses: actions/checkout@v3
|
|
|
- uses: cachix/install-nix-action@v20
|
|
|
- - run: integration-test/run.sh
|
|
|
+ with:
|
|
|
+ # This channel is only required to invoke "nix-shell".
|
|
|
+ # Everything inside that nix-shell will use a pinned version of
|
|
|
+ # nixpkgs.
|
|
|
+ nix_path: nixpkgs=channel:nixos-23.05
|
|
|
+ - run: |
|
|
|
+ cd integration-test
|
|
|
+ nix-shell --run ./run.sh
|