Skip to content

Commit 89ba0bf

Browse files
committed
integration test runs again
1 parent f0f029f commit 89ba0bf

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

integration-test/bins/rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "nightly-2024-03-31" # rustc 1.79-nightly
2+
channel = "nightly-2024-04-30" # rustc 1.80-nightly
33
profile = "default"
44
components = [
55
"rust-src",

integration-test/run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ function fn_main() {
1515

1616
function fn_build_rust_bins() {
1717
cd "bins"
18-
cargo build --release
18+
cargo --version
19+
cargo build --release --verbose
1920
cd "$DIR"
2021
}
2122

shell.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ pkgs.mkShell rec {
1313
grub2
1414
qemu
1515
xorriso
16+
17+
(pkgs.writeShellScriptBin "run-integrationtest" ''
18+
./integration-test/run.sh
19+
'')
1620
];
1721

1822
# To invoke "nix-shell" in the CI-runner, we need a global Nix channel.

0 commit comments

Comments
 (0)