-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (84 loc) · 2.77 KB
/
docker.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
name: docker.yml
on:
workflow_dispatch:
inputs:
version:
description: 'Solana version'
required: true
default: '1.18.15'
jobs:
build:
strategy:
matrix:
include:
- platform: "linux/amd64"
runner: buildjet-16vcpu-ubuntu-2204
- platform: "linux/arm64"
runner: buildjet-16vcpu-ubuntu-2204-arm
runs-on: ${{ matrix.runner }}
steps:
- name: Set image name
run: |
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> $GITHUB_ENV
- name: Set platform path name
run: |
echo "PLATFORM_PATH_NAME=${{ matrix.platform }}" | tr '/' '-' >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push specific docker image
uses: docker/build-push-action@v5
id: build
with:
context: .
push: true
platforms: ${{ matrix.platform }}
outputs: type=image,name=${{ env.IMAGE_NAME }},push-by-digest=true,name-canonical=true,push=true
build-args: |
SOLANA_VERSION=${{ inputs.version }}
- name: Export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: Upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ env.PLATFORM_PATH_NAME }}
path: /tmp/digests/*
if-no-files-found: error
merge-images:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Set image name
run: |
echo "IMAGE_NAME=ghcr.io/${{ github.repository }}" >> $GITHUB_ENV
echo "FINAL_IMAGE_NAME=ghcr.io/${{ github.repository }}:${{ inputs.version }}" >> $GITHUB_ENV
- name: Download digests
uses: actions/download-artifact@v4
with:
pattern: digests-main-*
path: /tmp/digests
merge-multiple: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create merged image
working-directory: /tmp/digests
run: |
docker buildx imagetools create -t ${{ env.FINAL_IMAGE_NAME }} $(printf '${{ env.IMAGE_NAME }}@sha256:%s' *)