Skip to content

Commit

Permalink
everest: disable rust tests in Pulse, ditch bindgen
Browse files Browse the repository at this point in the history
These are anyway run by Pulse CI. Installing bindgen is not enough since
we need to augment the PATH in order to find it, and I don't think it's
worth it to get into this.
  • Loading branch information
mtzguido committed Jan 2, 2025
1 parent cbe5c5f commit 10c66fd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions everest
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,6 @@ OCAML
else
echo "... rust (cargo) found in PATH"
fi
cargo install bindgen-cli

# .NET 6.0 (needed to compile F* ulib/fs)
if dotnet --list-sdks | grep '^6\.0\.' >/dev/null ; then
Expand Down Expand Up @@ -963,7 +962,7 @@ build_karamel () {
}

build_pulse () {
$MAKE -C pulse $make_opts
$MAKE -C pulse $make_opts PULSE_NO_RUST=1
}

build_steel () {
Expand Down Expand Up @@ -1042,7 +1041,7 @@ test_karamel () {
LD_LIBRARY_PATH= $MAKE -C karamel/test $make_opts everything
}
test_pulse () {
$MAKE -C pulse test $make_opts
$MAKE -C pulse test $make_opts PULSE_NO_RUST=1
}
test_steel () {
$MAKE -C steel test $make_opts
Expand Down

0 comments on commit 10c66fd

Please sign in to comment.