forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 34
106 lines (94 loc) · 3.06 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: CI
env:
FOUNDRY_PROFILE: ci
DOCKER_BUILDKIT: 1
REGISTRY: ghcr.io
REPO: ${{ github.repository_owner }}
on:
push:
branches:
- celestia-develop
- test/github-actions
pull_request:
branches:
- celestia-develop
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
docker-build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
strategy:
matrix:
docker_name:
- op-node
- op-batcher
- op-program
- op-proposer
- op-challenger
- proofs-tools
- op-dispute-mon
- op-conductor
- da-server
- op-supervisor
- cannon
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate clean branch name
id: clean_branch
run: |
# Replace invalid characters with dash
CLEAN_BRANCH="$(echo "${{ github.ref_name }}" | sed 's/[^a-zA-Z0-9.]/-/g')"
echo "name=${CLEAN_BRANCH}" >> "$GITHUB_OUTPUT"
- name: Set build environment
run: |
{
echo "REGISTRY=${{ env.REGISTRY }}"
echo "REPOSITORY=${{ env.REPO }}"
echo "GIT_COMMIT=$(git rev-parse HEAD)"
echo "GIT_DATE=$(git show -s --format='%ct')"
echo "GIT_VERSION=untagged"
echo "IMAGE_TAGS=${{ github.sha }},${{ steps.clean_branch.outputs.name }}"
echo "PLATFORMS=linux/amd64"
} >> "$GITHUB_ENV"
- name: Build Docker image
run: |
# Create buildx builder
docker buildx create --driver=docker-container --name=buildx-build --bootstrap --use
# For PRs, use --load to make the image available locally
# For pushes, use --push to publish to registry
OUTPUT_ARG=""
if [ "${{ github.event_name }}" = "pull_request" ]; then
OUTPUT_ARG="--load"
else
OUTPUT_ARG="--push"
fi
# Build using docker-bake.hcl
docker buildx bake \
--progress plain \
--builder=buildx-build \
-f docker-bake.hcl \
"${OUTPUT_ARG}" \
"${{ matrix.docker_name }}"
- name: Save Docker image
if: github.event_name == 'pull_request'
run: |
CLEAN_TAG="${{ steps.clean_branch.outputs.name }}"
IMAGE_NAME="${{ env.REGISTRY }}/${{ env.REPO }}/${{ matrix.docker_name }}:${CLEAN_TAG}"
docker save "${IMAGE_NAME}" > "/tmp/${{ matrix.docker_name }}.tar"
- name: Upload Docker image
if: github.event_name == 'pull_request'
uses: actions/upload-artifact@v4
with:
name: docker-${{ matrix.docker_name }}
path: /tmp/${{ matrix.docker_name }}.tar