Skip to content

Commit

Permalink
Use org runners for building containers (#287)
Browse files Browse the repository at this point in the history
* Use org runners for building containers

* Build linux/arm64 only on celo-release branches
  • Loading branch information
jcortejoso authored Dec 2, 2024
1 parent a102e49 commit 710ed3d
Showing 1 changed file with 38 additions and 22 deletions.
60 changes: 38 additions & 22 deletions .github/workflows/docker-build-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,51 @@ permissions:

jobs:
build-scan-container-geth:
runs-on: ['self-hosted', 'org', '8-cpu']
permissions:
contents: read
security-events: write
id-token: write
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@main
name: Build us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth:${{ github.sha }}
with:
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth/providers/github-by-repos
service-account: '[email protected]'
artifact-registry: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth
tags: ${{ github.sha }}
platforms: linux/amd64,linux/arm64
context: .
file: Dockerfile
trivy: true
steps:
- uses: actions/checkout@v4
- name: Login at GCP Artifact Registry
uses: celo-org/reusable-workflows/.github/actions/[email protected]
with:
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth/providers/github-by-repos
service-account: [email protected]
docker-gcp-registries: us-west1-docker.pkg.dev
- name: Build and push container
uses: celo-org/reusable-workflows/.github/actions/[email protected]
with:
platforms: ${{ startsWith(github.ref, 'refs/heads/celo') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
registry: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth
tags: ${{ github.sha }}
context: .
dockerfile: Dockerfile
push: true
trivy: ${{ startsWith(github.ref, 'refs/heads/celo') }}

build-scan-container-bootnode:
runs-on: ['self-hosted', 'org', '8-cpu']
permissions:
contents: read
security-events: write
id-token: write
uses: celo-org/reusable-workflows/.github/workflows/container-cicd.yaml@main
name: Build us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth-bootnode:${{ github.sha }}
with:
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth/providers/github-by-repos
service-account: '[email protected]'
artifact-registry: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth-bootnode
tags: ${{ github.sha }}
platforms: linux/amd64,linux/arm64
context: .
file: Dockerfile.bootnode
trivy: true
steps:
- uses: actions/checkout@v4
- name: Login at GCP Artifact Registry
uses: celo-org/reusable-workflows/.github/actions/[email protected]
with:
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-op-geth/providers/github-by-repos
service-account: [email protected]
docker-gcp-registries: us-west1-docker.pkg.dev
- name: Build and push container
uses: celo-org/reusable-workflows/.github/actions/[email protected]
with:
platforms: ${{ startsWith(github.ref, 'refs/heads/celo') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
registry: us-west1-docker.pkg.dev/blockchaintestsglobaltestnet/dev-images/op-geth-bootnode
tags: ${{ github.sha }}
context: .
dockerfile: Dockerfile.bootnode
push: true
trivy: ${{ startsWith(github.ref, 'refs/heads/celo') }}

0 comments on commit 710ed3d

Please sign in to comment.