-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into afo/faster-compressor
- Loading branch information
Showing
150 changed files
with
2,060 additions
and
2,432 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"core": "25.4.0", | ||
"core": "26.1.0", | ||
"prover": "17.1.1", | ||
"zkstack_cli": "0.1.2" | ||
} |
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
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
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: Publish crates | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
compontent: | ||
description: 'Component to release. Possible values are: core, prover or zkstack_cli.' | ||
required: true | ||
default: 'zkstack_cli' | ||
run-build: | ||
type: boolean | ||
description: 'Build the workspace before release.' | ||
required: false | ||
default: true | ||
run-tests: | ||
type: boolean | ||
description: 'Run tests before release.' | ||
required: false | ||
default: false | ||
org-owner: | ||
type: string | ||
description: 'Organization to add as owner of the crates.' | ||
required: false | ||
default: 'github:matter-labs:crates-io' | ||
|
||
|
||
jobs: | ||
|
||
publish-crates: | ||
name: Publish to crates.io | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Publish crates | ||
uses: matter-labs/zksync-ci-common/.github/actions/publish-crates@v1 | ||
with: | ||
slack_webhook: ${{ secrets.SLACK_WEBHOOK_RELEASES }} # Slack webhook for notifications | ||
cargo_registry_token: ${{ secrets.CRATES_IO_TOKEN }} # Crates.io token for publishing | ||
workspace_path: ${{ inputs.component }} | ||
org_owner: ${{ inputs.org-owner }} | ||
run_build: ${{ inputs.run-build }} | ||
run_tests: ${{ inputs.run-tests }} | ||
gh_token: ${{ secrets.GITHUB_TOKEN }} |
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,29 +1,32 @@ | ||
name: Release-please | ||
|
||
# Give permissions to the release-please to open, update PRs | ||
# and commit to PRs the repository to update Cargo.lock | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
id-token: write | ||
attestations: write | ||
|
||
# Run the workflow on push to the main branch or manually | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: release-please | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Run release-please | ||
id: release | ||
uses: google-github-actions/release-please-action@e4dc86ba9405554aeba3c6bb2d169500e7d3b4ee # v4.1.1 | ||
with: | ||
token: ${{ secrets.RELEASE_TOKEN }} | ||
config-file: .github/release-please/config.json | ||
manifest-file: .github/release-please/manifest.json | ||
|
||
- name: Send Release Info | ||
if: ${{ steps.release.outputs.releases_created == 'true' }} | ||
uses: matter-labs/format-release-please-for-slack-action@69e6fe9e4ec531b7b5fb0d826f73c190db83cf42 # v2.1.0 | ||
with: | ||
release-please-output: ${{ toJSON(steps.release.outputs) }} | ||
slack-webhook-url: ${{ secrets.SLACK_WEBHOOK_RELEASES }} | ||
# Prepare the release PR with changelog updates and create github releases | ||
release-please: | ||
uses: matter-labs/zksync-ci-common/.github/workflows/release-please.yaml@v1 | ||
secrets: | ||
slack_webhook: ${{ secrets.SLACK_WEBHOOK_RELEASES }} # Slack webhook for notifications | ||
gh_token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for release-please | ||
with: | ||
config: '.github/release-please/config.json' # Path to the configuration file | ||
manifest: '.github/release-please/manifest.json' # Path to the manifest file | ||
update-cargo-lock: true # Update Cargo.lock file in the release PR | ||
publish-to-crates-io: true # Enable publishing to crates.io | ||
upgrade-dependencies: true # Upgrade cross-workspace dependencies | ||
version-suffix: 'non-semver-compat' # Version suffix for the crates.io release |
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
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.