-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tf/fix-compilation-warning
- Loading branch information
Showing
278 changed files
with
8,234 additions
and
4,194 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ jobs: | |
outputs: | ||
release-pr: ${{ steps.release.outputs.pr }} | ||
tag-name: ${{ steps.release.outputs.tag_name }} | ||
pending-release-semver: v${{ steps.release.outputs.major }}.${{steps.release.outputs.minor}}.${{steps.release.outputs.patch}} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run release-please | ||
|
@@ -39,35 +40,9 @@ jobs: | |
run: | | ||
./scripts/update-acvm-workspace-versions.sh | ||
- name: Configure git | ||
run: | | ||
git config user.name kevaundray | ||
git config user.email [email protected] | ||
- name: Commit updates | ||
run: | | ||
git add Cargo.toml | ||
git commit -m 'chore: Update root workspace acvm versions' | ||
git push | ||
update-lockfile: | ||
name: Update lockfile | ||
needs: [release-please,update-acvm-workspace-package-versions] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ fromJSON(needs.release-please.outputs.release-pr).headBranchName }} | ||
token: ${{ secrets.NOIR_RELEASES_TOKEN }} | ||
|
||
- name: Setup toolchain | ||
uses: dtolnay/[email protected] | ||
|
||
- name: Update lockfile | ||
run: | | ||
cargo update --workspace | ||
cargo update --workspace | ||
- name: Configure git | ||
run: | | ||
|
@@ -76,15 +51,16 @@ jobs: | |
- name: Commit updates | ||
run: | | ||
git add Cargo.lock | ||
git commit -m 'chore: Update lockfile' | ||
git add . | ||
git commit -m 'chore: Update root workspace acvm versions and lockfile' | ||
git push | ||
update-docs: | ||
name: Update docs | ||
needs: [release-please, update-lockfile] | ||
if: ${{ needs.release-please.outputs.tag-name }} | ||
needs: [release-please, update-acvm-workspace-package-versions] | ||
if: ${{ needs.release-please.outputs.release-pr }} | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout release branch | ||
uses: actions/checkout@v4 | ||
|
@@ -102,7 +78,7 @@ jobs: | |
|
||
- name: Cut a new version | ||
working-directory: ./docs | ||
run: yarn docusaurus docs:version ${{ needs.release-please.outputs.tag-name }} | ||
run: yarn docusaurus docs:version ${{ needs.release-please.outputs.pending-release-semver }} | ||
|
||
- name: Configure git | ||
run: | | ||
|
@@ -112,7 +88,7 @@ jobs: | |
- name: Commit new documentation version | ||
run: | | ||
git add . | ||
git commit -m "chore(docs): cut new docs version for tag ${{ needs.release-please.outputs.tag-name }}" | ||
git commit -m "chore(docs): cut new docs version for tag ${{ needs.release-please.outputs.pending-release-semver }}" | ||
git push | ||
build-binaries: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
".": "0.20.0", | ||
"acvm-repo": "0.37.0" | ||
".": "0.22.0", | ||
"acvm-repo": "0.38.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.