Skip to content

Commit

Permalink
fix: add missing initializers (#6591)
Browse files Browse the repository at this point in the history
Should fix gcc compilation

---------

Co-authored-by: ludamad <[email protected]>
  • Loading branch information
IlyasRidhuan and ludamad authored May 22, 2024
1 parent 4991188 commit a575708
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,23 @@ jobs:
--secret AZTEC_BOT_COMMENTER_GITHUB_TOKEN=${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} \
+bench-comment
bb-gcc:
needs: setup
runs-on: ${{ github.event.pull_request.user.login || github.actor }}-x86
steps:
- uses: actions/checkout@v4
with: { ref: "${{ env.GIT_COMMIT }}" }
# Only allow one memory-hunger prover test to use this runner
- uses: ./.github/ci-setup-action
with:
# must be globally unique for build x runner
concurrency_key: bb-gcc
- name: "Ensure GCC Builds"
working-directory: ./barretenberg/cpp/
timeout-minutes: 40
# limit our parallelism to half our cores
run: earthly-ci --no-output +preset-gcc

# barretenberg (prover) native and AVM (public VM) tests
# only ran on x86 for resource reasons (memory intensive)
bb-native-tests:
Expand Down Expand Up @@ -482,13 +499,14 @@ jobs:
# - bench-e2e # does not block merge
# - bench-summary # does not block merge
- e2e
- bb-native-tests
- acir-bench
- bb-bench
- bb-gcc
- bb-js-test
- bb-native-tests
- yarn-project-formatting
- yarn-project-test
- prover-client-test
- bb-js-test
- barretenberg-acir-tests-bb-js
- barretenberg-acir-tests-bb
- barretenberg-acir-tests-sol
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ TEST_F(UltraGoblinHonk, Databus)
.multi_scalar_mul_constraints = {},
.ec_add_constraints = {},
.recursion_constraints = {},
.honk_recursion_constraints = {},
.bigint_from_le_bytes_constraints = {},
.bigint_to_le_bytes_constraints = {},
.bigint_operations = {},
Expand Down Expand Up @@ -307,6 +308,7 @@ TEST_F(UltraGoblinHonk, DatabusReturn)
.multi_scalar_mul_constraints = {},
.ec_add_constraints = {},
.recursion_constraints = {},
.honk_recursion_constraints = {},
.bigint_from_le_bytes_constraints = {},
.bigint_to_le_bytes_constraints = {},
.bigint_operations = {},
Expand Down

0 comments on commit a575708

Please sign in to comment.