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

fix: remove noirc_driver/aztec feature flag in docker #3784

Merged
merged 3 commits into from
Dec 12, 2023
Merged
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
9 changes: 8 additions & 1 deletion .github/workflows/test-cargo.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
name: Test cargo

on:
pull_request:
merge_group:
push:
branches:
- 'master'
- master

# This will cancel previous runs when a branch or PR is updated
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true

jobs:
build:
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/test-js.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
name: Test JS packages

on:
pull_request:
merge_group:
push:
branches:
- 'master'
- master

# This will cancel previous runs when a branch or PR is updated
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }}
cancel-in-progress: true


jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap_native.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ else
fi

# Build native.
cargo build --features="noirc_driver/aztec" --release
cargo build --release
2 changes: 0 additions & 2 deletions scripts/bootstrap_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ else
export GIT_COMMIT=$(git rev-parse --verify HEAD)
fi

export cargoExtraArgs="--features noirc_driver/aztec"

yarn
yarn build

Expand Down
4 changes: 1 addition & 3 deletions scripts/test_js_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ else
export GIT_COMMIT=$(git rev-parse --verify HEAD)
fi

export cargoExtraArgs="--features noirc_driver/aztec"

cargo build --features="noirc_driver/aztec" --release
cargo build --release
export PATH="${PATH}:/usr/src/noir/target/release/"

yarn
Expand Down
Loading