-
Notifications
You must be signed in to change notification settings - Fork 0
156 lines (127 loc) · 4.87 KB
/
build-sgx-dev.yaml
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
name: build_push_sgx_dev_img
on:
release:
types: [published]
push:
branches:
- main
paths:
- SGXDev/**
- SGXSolDev/**
- .github/workflows/build-sgx-dev.yaml
jobs:
build_sgx_dev:
name: Build and publish SGX Dev image
runs-on: ubuntu-22.04
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate package repo name
id: ghcr_repo
run: echo "path=ghcr.io/${{ github.repository_owner }}/decent-sgxdev" | tr '[:upper:]' '[:lower:]' >> $GITHUB_OUTPUT
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ steps.ghcr_repo.outputs.path }}
- name: Get current commit SHA short
id: commit_sha
run: echo "short=$(git rev-parse --short HEAD)" | tr '[:upper:]' '[:lower:]' >> $GITHUB_OUTPUT
- name: Manually generate sha tag
id: tag_sha
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:${{ steps.commit_sha.outputs.short }}" >> $GITHUB_OUTPUT
- name: Manually generate head tag
id: tag_head
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:head" >> $GITHUB_OUTPUT
- name: Manually generate ver tag
if: ${{ startsWith(github.ref, 'refs/tags/') }}
id: tag_ver
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Build and push Docker images for each commit
uses: docker/build-push-action@v5
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with:
context: ./SGXDev
platforms: linux/amd64
push: true
tags: |
${{ steps.tag_sha.outputs.tag }}
${{ steps.tag_head.outputs.tag }}
labels: ${{ steps.meta.outputs.labels }}
- name: Create and push a manifest with ver referencing latest commit
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: |
docker buildx imagetools create \
-t ${{ steps.tag_ver.outputs.tag }} \
${{ steps.tag_head.outputs.tag }}
build_sgx_sol_dev:
name: Build and publish SGX Solidity Dev image
needs: [ build_sgx_dev ]
runs-on: ubuntu-22.04
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Generate package repo name
id: ghcr_repo
run: echo "path=ghcr.io/${{ github.repository_owner }}/decent-sgxsoldev" | tr '[:upper:]' '[:lower:]' >> $GITHUB_OUTPUT
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ steps.ghcr_repo.outputs.path }}
- name: Get current commit SHA short
id: commit_sha
run: echo "short=$(git rev-parse --short HEAD)" | tr '[:upper:]' '[:lower:]' >> $GITHUB_OUTPUT
- name: Manually generate sha tag
id: tag_sha
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:${{ steps.commit_sha.outputs.short }}" >> $GITHUB_OUTPUT
- name: Manually generate head tag
id: tag_head
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:head" >> $GITHUB_OUTPUT
- name: Manually generate ver tag
if: ${{ startsWith(github.ref, 'refs/tags/') }}
id: tag_ver
run: echo "tag=${{ steps.ghcr_repo.outputs.path }}:${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Build and push Docker images for each commit
uses: docker/build-push-action@v5
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
with:
context: ./SGXSolDev
platforms: linux/amd64
build-args: |
BASE_IMG_TAG=${{ steps.commit_sha.outputs.short }}
push: true
tags: |
${{ steps.tag_sha.outputs.tag }}
${{ steps.tag_head.outputs.tag }}
labels: ${{ steps.meta.outputs.labels }}
- name: Create and push a manifest with ver referencing latest commit
if: ${{ startsWith(github.ref, 'refs/tags/') }}
run: |
docker buildx imagetools create \
-t ${{ steps.tag_ver.outputs.tag }} \
${{ steps.tag_head.outputs.tag }}