-
Notifications
You must be signed in to change notification settings - Fork 2
214 lines (179 loc) · 8.98 KB
/
docker-build-push.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
214
name: Build workertools base image
on:
push:
branches: [ arm64-support ]
workflow_dispatch:
env:
REGISTRY_IMAGE: ${{ secrets.TESTING_DOCKER_HUB_USER }}/workertools
jobs:
get-version-number:
runs-on: windows-latest
outputs:
VERSION: ${{ steps.check-version.outputs.VERSION }}
MAJOR_VERSION: ${{ steps.check-version.outputs.MAJOR_VERSION }}
WIN2022_VERSION: ${{ steps.check-version.outputs.WIN2022_VERSION }}
CONTINUE: ${{ steps.check-version.outputs.CONTINUE }}
steps:
- uses: actions/checkout@v4
- id: check-version
name: Compare latest version with container
run: |
$chocoInformationRaw = choco info powershell-core --limitoutput
$versionOutput = ($chocoInformationRaw.Split("|"))[1]
[System.Version]$version = $null
$versionParsed = [System.Version]::TryParse($versionOutput, [ref]$version)
if(-not $versionParsed) {
Write-Host "Unable to parse '$versionOutput' as a valid version. Won't continue"
echo "CONTINUE=No" >> $env:GITHUB_OUTPUT
}
else {
$versionToCompare = "$($version.Major).$($version.Minor).$($version.Build)"
Write-Host "Parsed version as $versionToCompare"
$workerToolsTags = Invoke-RestMethod "https://registry.hub.docker.com/v2/repositories/${{ env.REGISTRY_IMAGE }}/tags?page_size=50"
$matchingTag = $workerToolsTags.results | Where-Object { $_.name -eq $versionToCompare }
echo "VERSION=$versionToCompare" >> $env:GITHUB_OUTPUT
echo "MAJOR_VERSION=$($version.Major)" >> $env:GITHUB_OUTPUT
Write-Host "VERSION: $versionToCompare"
Write-Host "MAJOR_VERSION: $version.Major"
if ($null -ne $matchingTag)
{
Write-Host "Docker container already has latest version"
echo "CONTINUE=No" >> $env:GITHUB_OUTPUT
}
else
{
Write-Host "We need to upgrade the container to $versionToCompare"
Write-Host "Getting OS versions for windows 2022"
$win2022_manifest = (docker manifest inspect --verbose "mcr.microsoft.com/dotnet/framework/runtime:4.8.1-windowsservercore-ltsc2022" | ConvertFrom-Json)
$WIN2022_VERSION = $win2022_manifest.Descriptor.Platform.'os.version'
Write-Host "WIN2022_VERSION: $WIN2022_VERSION"
if([string]::IsNullOrWhiteSpace($WIN2022_VERSION)) {
throw "Could not establish OS versions for windows 2022 needed for docker manifest"
}
echo "WIN2022_VERSION=$WIN2022_VERSION" >> $env:GITHUB_OUTPUT
Write-Host "We have everything we need, continuing."
echo "CONTINUE=Yes" >> $env:GITHUB_OUTPUT
}
}
shell: powershell
build-linux:
needs: [get-version-number]
if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
strategy:
matrix:
os: [ubuntu-latest]
platform:
- linux/amd64
- linux/arm64
runs-on: ${{ matrix.os }}
steps:
- name: Prepare
run: |
platform=${{ matrix.platform }}
echo "PLATFORM_CONTEXT=${platform//\//_}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.TESTING_DOCKER_HUB_USER }}
password: ${{ secrets.TESTING_DOCKER_HUB_PAT }}
- name: Build and push by digest
env:
VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
MAJOR_VERSION: ${{ needs.get-version-number.outputs.MAJOR_VERSION }}
uses: docker/build-push-action@v5
with:
context: base/${{ env.PLATFORM_CONTEXT }}
# push: true
# load: false
platforms: ${{ matrix.platform }}
outputs: type=image,name=${{ env.REGISTRY_IMAGE }},push-by-digest=true,name-canonical=true,push=true
build-args: |
PS_VERSION=${{env.VERSION_NUMBER}}
PS_MAJOR_VERSION=${{env.MAJOR_VERSION}}
# - name: Build linux/arm64 image
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# MAJOR_VERSION: ${{ needs.get-version-number.outputs.MAJOR_VERSION }}
# uses: docker/build-push-action@v5
# with:
# context: base/linux_arm64
# push: true
# load: false
# platforms: linux/arm64
# tags: harrisonmeister/workertools:${{env.VERSION_NUMBER}}
# build-args: |
# PS_VERSION=${{env.VERSION_NUMBER}}
# PS_MAJOR_VERSION=${{env.MAJOR_VERSION}}
# build-win-2022:
# needs: [get-version-number]
# runs-on: windows-2022
# steps:
# - uses: actions/checkout@v4
# - name: DockerHub Login
# env:
# USERNAME: ${{ secrets.TESTING_DOCKER_HUB_USER }}
# PASSWORD: ${{ secrets.TESTING_DOCKER_HUB_PAT }}
# run: docker login --username ${env:USERNAME} --password "${env:PASSWORD}"
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Build the win2022 image
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# run: docker build ./windows-2022 --tag harrisonmeister/workertools:${env:VERSION_NUMBER}-windows.2022 --tag harrisonmeister/workertools:latest-windows.2022
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Push the win2022 version-specific image
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# run: docker push harrisonmeister/workertools:${env:VERSION_NUMBER}-windows.2022
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Push the win2022 latest image
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# run: docker push harrisonmeister/workertools:latest-windows.2022
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# build-docker-manifest:
# needs: [get-version-number, build-linux, build-win-2022]
# runs-on: ubuntu-latest
# steps:
# - name: Dockerhub Login
# env:
# USERNAME: ${{ secrets.TESTING_DOCKER_HUB_USER }}
# PASSWORD: ${{ secrets.TESTING_DOCKER_HUB_PAT }}
# run: docker login --username $USERNAME --password "$PASSWORD"
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Create docker manifest for latest tag
# run: docker manifest create harrisonmeister/workertools:latest harrisonmeister/workertools:latest-windows.2022 harrisonmeister/workertools:latest-ubuntu.2204
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Annotate docker manifest for latest tag
# env:
# WIN2022_VERSION: ${{ needs.get-version-number.outputs.WIN2022_VERSION }}
# run: |
# docker manifest annotate --os "windows" --os-version "$WIN2022_VERSION" --arch "amd64" "harrisonmeister/workertools:latest" "harrisonmeister/workertools:latest-windows.2022"
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Push docker manifest for latest tag
# run: docker manifest push harrisonmeister/workertools:latest
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Create docker manifest for version-specific tag
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# run: docker manifest create harrisonmeister/workertools:$VERSION_NUMBER harrisonmeister/workertools:$VERSION_NUMBER-windows.2022 harrisonmeister/workertools:$VERSION_NUMBER-ubuntu.2204
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Annotate docker manifest for version-specific tag
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# WIN2022_VERSION: ${{ needs.get-version-number.outputs.WIN2022_VERSION }}
# run: |
# docker manifest annotate --os "windows" --os-version "$WIN2022_VERSION" --arch "amd64" "harrisonmeister/workertools:$VERSION_NUMBER" "harrisonmeister/workertools:$VERSION_NUMBER-windows.2022"
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}
# - name: Push docker manifest for version-specific tag
# env:
# VERSION_NUMBER: ${{ needs.get-version-number.outputs.VERSION }}
# run: docker manifest push harrisonmeister/workertools:$VERSION_NUMBER
# if: ${{ needs.get-version-number.outputs.CONTINUE == 'Yes' }}