Skip to content

Commit d3ec352

Browse files
committed
Merge branch 'next' into cl/install_dockerless
2 parents fce3e4f + 11d8140 commit d3ec352

File tree

4,334 files changed

+823698
-23345
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,334 files changed

+823698
-23345
lines changed

.github/ci3.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ function determine_ci_mode {
7575
CI_MODE="docs"
7676
elif has_label "ci-barretenberg" || [ "${TARGET_BRANCH:-}" == "merge-train/barretenberg" ]; then
7777
CI_MODE="barretenberg"
78-
elif [[ "${GITHUB_REF:-}" == *"-nightly."* ]] || [[ "${GITHUB_REF:-}" == *"-rc."* ]]; then
79-
CI_MODE="nightly"
78+
# We don't distinguish nightlies currently.
79+
# elif [[ "${GITHUB_REF:-}" == *"-nightly."* ]] || [[ "${GITHUB_REF:-}" == *"-rc."* ]]; then
80+
# CI_MODE="nightly"
8081
elif [[ "${GITHUB_REF:-}" == refs/tags/v* ]]; then
8182
CI_MODE="release"
8283
else

.github/workflows/cancel-stale-workflows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ concurrency:
1010

1111
jobs:
1212
cancel:
13-
if: ${{ !github.event.pull_request.merged }}
14-
1513
permissions:
1614
actions: write
1715
contents: read
@@ -26,6 +24,7 @@ jobs:
2624

2725
steps:
2826
- name: Cancel active PR runs for ${{ matrix.workflow_id }}
27+
continue-on-error: true
2928
uses: actions/github-script@5c56fde4671bc2d3592fb0f2c5b5bab9ddae03b1
3029
with:
3130
script: |
@@ -51,3 +50,4 @@ jobs:
5150
});
5251
}
5352
}
53+

.github/workflows/ci3-external.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,9 @@ jobs:
8383
env:
8484
SHOULD_SQUASH_MERGE: ${{ contains(github.event.pull_request.labels.*.name, 'ci-squash-and-merge') && '1' || '0' }}
8585
SHOULD_UPLOAD_BENCHMARKS: "0"
86+
# For updating success cache.
87+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
88+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
8689
GITHUB_TOKEN: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
8790
PR_NUMBER: ${{ github.event.pull_request.number }}
8891
PR_HEAD_REF: ${{ github.event.pull_request.head.ref }}

.github/workflows/ci3.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@ jobs:
7272
if: always()
7373
env:
7474
CI_INTERNAL: "1"
75+
# For updating success cache.
76+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
77+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
7578
SHOULD_SQUASH_MERGE: ${{ contains(github.event.pull_request.labels.*.name, 'ci-squash-and-merge') && '1' || '0' }}
7679
GITHUB_TOKEN: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
7780
PR_NUMBER: ${{ github.event.pull_request.number }}

.github/workflows/mirror-noir-subrepo.yml

Lines changed: 0 additions & 146 deletions
This file was deleted.

.github/workflows/mirror-repos.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ on:
1010
schedule:
1111
# Run the workflow every night at 2:00 AM UTC.
1212
- cron: "0 2 * * *"
13+
workflow_dispatch:
1314

1415
jobs:
1516
mirror-to-barretenberg-repo:
@@ -18,6 +19,7 @@ jobs:
1819
- name: Checkout
1920
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2021
with:
22+
ref: next
2123
fetch-depth: 0
2224
token: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }}
2325
- name: Push to barretenberg repo
@@ -27,9 +29,10 @@ jobs:
2729
git config --global user.email [email protected]
2830
2931
if ./scripts/git_subrepo.sh push $SUBREPO_PATH --branch=master; then
30-
git fetch # in case a commit came after this
31-
git rebase origin/master
32+
git fetch origin next
33+
git rebase origin/next
3234
git commit --amend -m "$(git log -1 --pretty=%B) [skip ci]"
33-
git push
35+
# We rely on the fixup logic instead
36+
# git push origin next
3437
fi
3538

.github/workflows/nightly-docs-release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,18 @@ jobs:
114114
run: |
115115
./scripts/cleanup_nightly_versions.sh
116116
117+
- name: Install Noir toolchain
118+
uses: noir-lang/[email protected]
119+
with:
120+
toolchain: nightly
121+
122+
- name: Generate Aztec.nr API documentation
123+
working-directory: ./docs
124+
run: |
125+
# Generate aztec-nr API docs for this version
126+
./scripts/aztec_nr_docs_generation/generate_aztec_nr_docs.sh ${{ env.NIGHTLY_TAG }}
127+
echo "Generated Aztec.nr API docs for: ${{ env.NIGHTLY_TAG }}"
128+
117129
- name: Create Aztec nightly docs version
118130
working-directory: ./docs
119131
run: |

0 commit comments

Comments
 (0)