Skip to content

Commit

Permalink
Add yksom to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob-hughes committed Nov 16, 2023
1 parent 6138ad6 commit 9058341
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .buildbot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ set -e
# depth for the bootstrapper to find the correct llvm sha
git fetch --unshallow

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
sh rustup.sh --default-host x86_64-unknown-linux-gnu \
--default-toolchain nightly \
--no-modify-path \
--profile minimal \
-y
export PATH=`pwd`/.cargo/bin/:$PATH

export CARGO_HOME="`pwd`/.cargo"
export RUSTUP_HOME="`pwd`/.rustup"

Expand All @@ -16,3 +24,9 @@ ulimit -d $((1024 * 1024 * 8)) # 8 GiB

/usr/bin/time -v python3 x.py test --stage 2 --config .buildbot.config.toml --exclude rustdoc-json --exclude debuginfo

# Build and test yksom
git clone --recursive https://github.com/softdevteam/yksom
cd yksom
rustup toolchain link alloy build/x86_64-unknown-linux-gnu/stage1
cargo +alloy test
cargo +alloy test --release

0 comments on commit 9058341

Please sign in to comment.