Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(CI): Shorter wasmtime tests #515

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ jobs:
- *setup_aztec_commit
- run:
name: "Build"
command: cond_spot_run_test_script ./scripts/run_aztec_circuits_tests barretenberg-circuits-wasm-linux-clang-builder-runner "$AZTEC_COMMIT" 1 wasm scripts/a3-tests -*.skip*:*.circuit*
command: cond_spot_run_test_script ./scripts/run_aztec_circuits_tests barretenberg-circuits-wasm-linux-clang-builder-runner "$AZTEC_COMMIT" 1 wasm scripts/a3-tests *basic*:-*.skip*:*.circuit*

circuits-x86_64-tests:
docker:
Expand Down
2 changes: 1 addition & 1 deletion cpp/.aztec-packages-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a952e233e2a436e37f295d06d1ce344aafba90d0
6a9180cb53973ba92992b3da18e084d5f730cd24
4 changes: 3 additions & 1 deletion cpp/scripts/run_aztec_circuits_tests
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ if [ "$ARCH" != "wasm" ]; then
else
PRESET=wasm
BUILD_DIR=build-wasm
# WARNING: circuits tests here are limited to kernel tests only to reduce test time
OTHER_OPTS="--target aztec3_circuits_kernel_tests"
fi

echo "*** Running Aztec circuits tests on commit: $AZTEC_COMMIT"
Expand All @@ -44,7 +46,7 @@ docker run --rm -t $IMAGE_URI /bin/sh -c "\
rm -rf /usr/src/aztec3-packages/circuits/cpp/barretenberg;
mv /usr/src/barretenberg .; \
cmake --preset $PRESET $CONFIGURE_OPTS; \
cmake --build --preset $PRESET; \
cmake --build --preset $PRESET $OTHER_OPTS; \
cd /usr/src/aztec3-packages/circuits/cpp/barretenberg/cpp/srs_db; \
./download_ignition.sh $NUM_TRANSCRIPTS; \
cd /usr/src/aztec3-packages/circuits/cpp; \
Expand Down