-
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 deniallugo-fix-call-tracer
- Loading branch information
Showing
255 changed files
with
6,169 additions
and
2,450 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"core": "24.24.0", | ||
"core": "24.25.0", | ||
"prover": "16.5.0", | ||
"zk_toolbox": "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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
name: Build zksync-build-base Docker image | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
repo_ref: | ||
description: "git reference of the zksync-era to build" | ||
required: true | ||
default: main | ||
jobs: | ||
build-images: | ||
name: Build and Push Docker Images | ||
runs-on: ${{ fromJSON('["matterlabs-ci-runner-high-performance", "matterlabs-ci-runner-arm"]')[contains(matrix.arch, 'arm')] }} | ||
outputs: | ||
image_tag_sha: ${{ steps.get-sha.outputs.image_tag_sha }} | ||
# Needed to push to Gihub Package Registry | ||
permissions: | ||
packages: write | ||
contents: read | ||
env: | ||
DOCKERHUB_USER: ${{ secrets.DOCKERHUB_USER }} | ||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }} | ||
REPO_REF: ${{ github.event.inputs.repo_ref }} | ||
strategy: | ||
matrix: | ||
name: [ build-base ] | ||
repository: [ zksync-build-base ] | ||
arch: [ amd64, arm64 ] | ||
|
||
steps: | ||
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7 | ||
with: | ||
submodules: "recursive" | ||
|
||
- name: Login to google container registry | ||
run: | | ||
gcloud auth configure-docker us-docker.pkg.dev -q | ||
- name: Login to DockerHub | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Get tag | ||
id: get-sha | ||
run: | | ||
echo IMAGE_TAG_SHA=$(git rev-parse --short HEAD) >> $GITHUB_ENV | ||
echo image_tag_sha=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0 | ||
with: | ||
push: true | ||
context: . | ||
file: docker/build-base/Dockerfile | ||
labels: | | ||
org.opencontainers.image.source=https://github.com/matter-labs/zksync-era | ||
org.opencontainers.image.licenses="MIT OR Apache-2.0" | ||
tags: | | ||
matterlabs/zksync-build-base:${{ steps.get-sha.outputs.image_tag_sha }}-${{ matrix.arch }} | ||
us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/zksync-build-base:${{ steps.get-sha.outputs.image_tag_sha }}-${{ matrix.arch }} | ||
ghcr.io/${{ github.repository_owner }}/zksync-build-base:${{ steps.get-sha.outputs.image_tag_sha }}-${{ matrix.arch }} | ||
multiarch_manifest: | ||
# Needed to push to Gihub Package Registry | ||
permissions: | ||
packages: write | ||
contents: read | ||
needs: [ build-images ] | ||
env: | ||
IMAGE_TAG_SUFFIX: ${{ needs.build-images.outputs.image_tag_sha }} | ||
runs-on: [ matterlabs-ci-runner-high-performance ] | ||
steps: | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 | ||
|
||
- name: Login to google container registry | ||
run: | | ||
gcloud auth configure-docker us-docker.pkg.dev -q | ||
- name: Login to DockerHub | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USER }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Create and push multi-arch manifests for Dockerhub | ||
shell: bash | ||
run: | | ||
images=("zksync-build-base") | ||
archs=("amd64" "arm64") | ||
for img in "${images[@]}"; do | ||
multiarch_tag="matterlabs/zksync-build-base:latest" | ||
individual_images=() | ||
for arch in "${archs[@]}"; do | ||
TAG="$IMAGE_TAG_SUFFIX" | ||
docker pull matterlabs/zksync-build-base:${TAG}-${arch} --platform linux/${arch} | ||
individual_images+=("matterlabs/zksync-build-base:${TAG}-${arch}") | ||
done | ||
docker buildx imagetools create --tag "${multiarch_tag}" "${individual_images[@]}" | ||
done | ||
- name: Create and push multi-arch manifests for GitHub Container Registry | ||
shell: bash | ||
run: | | ||
images=("zksync-build-base") | ||
archs=("amd64" "arm64") | ||
for img in "${images[@]}"; do | ||
multiarch_tag="ghcr.io/${{ github.repository_owner }}/zksync-build-base:latest" | ||
individual_images=() | ||
for arch in "${archs[@]}"; do | ||
TAG="$IMAGE_TAG_SUFFIX" | ||
docker pull ghcr.io/${{ github.repository_owner }}/zksync-build-base:${TAG}-${arch} --platform linux/${arch} | ||
individual_images+=("ghcr.io/${{ github.repository_owner }}/zksync-build-base:${TAG}-${arch}") | ||
done | ||
docker buildx imagetools create --tag "${multiarch_tag}" "${individual_images[@]}" | ||
done | ||
- name: Create and push multi-arch manifests for Google Artifact Registry | ||
shell: bash | ||
run: | | ||
images=("zksync-build-base") | ||
archs=("amd64" "arm64") | ||
for img in "${images[@]}"; do | ||
multiarch_tag="us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/zksync-build-base:latest" | ||
individual_images=() | ||
for arch in "${archs[@]}"; do | ||
TAG="$IMAGE_TAG_SUFFIX" | ||
docker pull us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/zksync-build-base:${TAG}-${arch} --platform linux/${arch} | ||
individual_images+=("us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/zksync-build-base:${TAG}-${arch}") | ||
done | ||
docker buildx imagetools create --tag "${multiarch_tag}" "${individual_images[@]}" | ||
done |
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,66 @@ | ||
name: Build zksync-runtime-base Docker image | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
repo_ref: | ||
description: "git reference of the zksync-era to build" | ||
required: true | ||
default: main | ||
jobs: | ||
build-images: | ||
name: Build and Push Docker Images | ||
runs-on: matterlabs-ci-runner-high-performance | ||
outputs: | ||
image_tag_sha: ${{ steps.get-sha.outputs.image_tag_sha }} | ||
# Needed to push to Gihub Package Registry | ||
permissions: | ||
packages: write | ||
contents: read | ||
env: | ||
REPO_REF: ${{ github.event.inputs.repo_ref }} | ||
strategy: | ||
matrix: | ||
name: [ runtime-base ] | ||
image_name: [ zksync-runtime-base ] | ||
|
||
steps: | ||
- uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7 | ||
with: | ||
submodules: "recursive" | ||
|
||
- name: Login to google container registry | ||
run: | | ||
gcloud auth configure-docker us-docker.pkg.dev -q | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Get tag | ||
id: get-sha | ||
run: | | ||
echo IMAGE_TAG_SHA=$(git rev-parse --short HEAD) >> $GITHUB_ENV | ||
echo image_tag_sha=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1 | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | ||
|
||
- name: Build and push | ||
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0 | ||
with: | ||
push: true | ||
context: . | ||
platforms: arm64, amd64 | ||
file: docker/${{ matrix.name }}/Dockerfile | ||
labels: | | ||
org.opencontainers.image.source=https://github.com/matter-labs/zksync-era | ||
org.opencontainers.image.licenses="MIT OR Apache-2.0" | ||
tags: | | ||
us-docker.pkg.dev/matterlabs-infra/matterlabs-docker/${{ matrix.image_name }}:latest | ||
ghcr.io/${{ github.repository_owner }}/${{ matrix.image_name }}:latest |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.