-
Notifications
You must be signed in to change notification settings - Fork 0
213 lines (156 loc) · 5.8 KB
/
build.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
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
name: build
on:
push:
env:
OWNER: ${{ github.repository_owner }}
FILE: builder
IMAGE: ghcr.io/${{ github.repository_owner }}/builder
NODE_VERSION: 20.18.0 # renovate: datasource=node depName=node
DRY_RUN: ${{ github.ref_name != github.event.repository.default_branch }}
BUILDKIT_PROGRESS: plain
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch }}
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: enable corepack
run: corepack enable
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: enable corepack
run: corepack enable
- name: Installing dependencies
run: pnpm install
- name: Lint
run: pnpm lint
windows:
runs-on: ${{ format('windows-{0}', matrix.os) }}
needs: [lint]
timeout-minutes: 60
permissions:
contents: read
packages: write
strategy:
matrix:
os: [2019, 2022]
env:
BASE: ${{ matrix.os }}
TAG: windows-${{ matrix.os }}
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
# ignore not yet existing images
- name: Fetch the Docker image
run: |
docker pull ${{ env.IMAGE }}
docker pull ${{ env.IMAGE }}:${{ env.TAG }}
continue-on-error: true
- name: Build the Docker image
run: docker build -t ${{ env.IMAGE }}:${{ env.TAG }} --cache-from ${{ env.IMAGE }} --cache-from ${{ env.IMAGE }}:${{ env.TAG }} -f Dockerfile .
working-directory: ./windows
- name: Test run
run: docker compose --file docker-compose.test.yml run sut
working-directory: ./windows
env:
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }}
- name: Log into registry
if: github.ref_name == github.event.repository.default_branch
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Publish the Docker image
if: github.ref_name == github.event.repository.default_branch
run: docker push ${{ env.IMAGE }}
env:
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }}
shell: bash
working-directory: ./windows
linux:
runs-on: ubuntu-latest
needs: [lint]
timeout-minutes: 30
permissions:
contents: read
packages: write
env:
TAG: linux
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: docker-config
uses: containerbase/internal-tools@f2d23019110923e232236b448e355d68194a2c73 # v3.4.33
with:
command: docker-config
- name: Build the Docker image
run: docker buildx bake test
- name: Test run
run: docker compose --file docker-compose.test.yml run sut
working-directory: ./linux
env:
IMAGE: ${{ env.IMAGE }}:${{ env.TAG }}
- name: Log into registry
if: github.ref_name == github.event.repository.default_branch
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Publish the Docker image
if: github.ref_name == github.event.repository.default_branch
run: docker buildx bake build --provenance=false
multi-arch:
needs: [linux, windows]
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: enable corepack
run: corepack enable
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: enable corepack
run: corepack enable
- name: Installing dependencies
run: pnpm install
- name: Log into registry
if: github.ref_name == github.event.repository.default_branch
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: Build the Docker multiarch manifest
run: pnpm build --release latest
- name: Publish the Docker multiarch manifest
if: github.ref_name == github.event.repository.default_branch
run: pnpm push --release latest
release:
needs: [multi-arch]
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
- name: enable corepack
run: corepack enable
- name: Set up Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm
- name: enable corepack
run: corepack enable
- name: Installing dependencies
run: pnpm install
- name: Log into registry
if: github.ref_name == github.event.repository.default_branch
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: semantic-release
run: pnpm semantic-release --dry-run ${{env.DRY_RUN}} --ci ${{env.DRY_RUN != 'true'}}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}