Skip to content
Closed
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
35 changes: 18 additions & 17 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-wasm-linux-clang 64
command: echo Succeeding ...

x86_64-linux-gcc:
docker:
Expand All @@ -124,7 +124,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-x86_64-linux-gcc 64
command: echo Succeeding ...

x86_64-linux-clang:
docker:
Expand All @@ -135,7 +135,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-x86_64-linux-clang 64
command: echo Succeeding ...

x86_64-linux-clang-assert:
docker:
Expand All @@ -146,7 +146,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-x86_64-linux-clang-assert 64
command: echo Succeeding ...

barretenberg-tests:
docker:
Expand All @@ -157,7 +157,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 1 bb-tests
command: echo Succeeding ...
- *save_logs

honk-tests:
Expand All @@ -169,7 +169,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 1 honk_tests
command: echo Succeeding ...
- *save_logs


Expand All @@ -182,7 +182,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 1 stdlib_primitives_tests --gtest_filter=-stdlib_biggroup*
command: echo Succeeding ...
- *save_logs

stdlib-biggroup-tests:
Expand All @@ -194,7 +194,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 1 stdlib_primitives_tests --gtest_filter=stdlib_biggroup*
command: echo Succeeding ...
- *save_logs

stdlib-recursion-turbo-tests:
Expand All @@ -206,7 +206,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 1 stdlib_recursion_tests --gtest_filter=*turbo*
command: echo Succeeding ...
- *save_logs

stdlib-recursion-ultra-tests:
Expand All @@ -218,7 +218,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 3 stdlib_recursion_tests --gtest_filter=-*turbo*
command: echo Succeeding ...
- *save_logs

join-split-tests:
Expand All @@ -230,7 +230,7 @@ jobs:
- *setup_env
- run:
name: "Test"
command: cond_spot_run_tests barretenberg-x86_64-linux-clang-assert 3 join_split_example_proofs_join_split_tests --gtest_filter=-*full_proof*
command: echo Succeeding ...
- *save_logs

benchmark-aggregator:
Expand All @@ -245,7 +245,7 @@ jobs:
- *benchmark_add_keys
- run:
name: "Test"
command: store_test_benchmark_logs barretenberg-x86_64-linux-clang-assert
command: echo Succeeding ...

###################################
# Aztec integration tests
Expand All @@ -258,7 +258,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-circuits-wasm-linux-clang-builder-runner 64
command: echo Succeeding ...

circuits-x86_64-linux-clang-builder-runner:
docker:
Expand All @@ -269,7 +269,7 @@ jobs:
- *setup_env
- run:
name: "Build"
command: cond_spot_run_build barretenberg-circuits-x86_64-linux-clang-builder-runner 64
command: echo Succeeding ...

circuits-wasm-tests:
docker:
Expand All @@ -281,7 +281,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: echo Failing ... && false

circuits-x86_64-tests:
docker:
Expand All @@ -293,7 +293,7 @@ jobs:
- *setup_aztec_commit
- run:
name: "Build"
command: cond_spot_run_test_script ./scripts/run_aztec_circuits_tests barretenberg-circuits-x86_64-linux-clang-builder-runner "$AZTEC_COMMIT" 1 x86_64 scripts/a3-tests -*.skip*
command: echo Succeeding ...
# End Aztec integration tests
###################################

Expand All @@ -307,8 +307,9 @@ defaults: &defaults
- slack
post-steps:
- slack/notify:
channel: $SLACK_BARRETENBERG_CHANNEL
event: fail
branch_pattern: "master"
branch_pattern: "db/do-not-merge-slack-orb-fail-test"

bb_test: &bb_test
requires:
Expand Down