-
Notifications
You must be signed in to change notification settings - Fork 0
236 lines (207 loc) · 7.37 KB
/
vib-build.yml
File metadata and controls
236 lines (207 loc) · 7.37 KB
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
name: Vib Build
on:
push:
branches: [ "main" ]
tags:
- '*'
paths:
- '.github/workflows/**'
- 'includes.container/**'
- 'modules/**'
- 'recipe.yml'
schedule:
- cron: '0 3 * * 6'
pull_request:
workflow_dispatch:
env:
CUSTOM_IMAGE_NAME: vanillaos
BUILDX_NO_DEFAULT_ATTESTATIONS: 1
jobs:
verify_image:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache APT packages
uses: actions/cache@v4
with:
path: |
~/.apt/archives
~/.apt/lists
key: ${{ runner.os }}-apt-${{ hashFiles('**/package-lock.json') }}-libfyaml-utils
restore-keys: |
${{ runner.os }}-apt-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-apt-
- name: Update and install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libfyaml-utils
continue-on-error: true
- name: Read base image name from recipe
id: read_base_recipe
run: |
BASE_IMAGE="$(fy-filter -f recipe.yml /stages/-1/base)"
echo The base image is $BASE_IMAGE
if [ -z $BASE_IMAGE ]; then exit 1; fi
echo "base_image=$BASE_IMAGE" >> "$GITHUB_OUTPUT"
echo "BASE_IMAGE=$BASE_IMAGE" >> "$GITHUB_ENV"
- name: Verify Base Image Integrity
run: |
gh attestation verify oci://ghcr.io/${{ env.BASE_IMAGE }} --owner Vanilla-OS
env:
GH_TOKEN: ${{ github.token }}
check_update:
runs-on: ubuntu-latest
outputs:
has_updates: ${{ steps.set_output.outputs.has_updates }}
base_image: ${{ steps.read_base_recipe.outputs.base_image }}
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache APT packages
uses: actions/cache@v4
with:
path: |
~/.apt/archives
~/.apt/lists
key: ${{ runner.os }}-apt-${{ hashFiles('**/package-lock.json') }}-jq-skopeo-libfyaml-utils
restore-keys: |
${{ runner.os }}-apt-${{ hashFiles('**/package-lock.json') }}-
${{ runner.os }}-apt-
- name: Update and install dependencies
run: |
sudo apt-get update
sudo apt-get install -y jq skopeo libfyaml-utils
continue-on-error: true
- name: Read base image name from recipe
id: read_base_recipe
run: |
BASE_IMAGE="$(fy-filter -f recipe.yml /stages/-1/base)"
echo The base image is $BASE_IMAGE
if [ -z $BASE_IMAGE ]; then exit 1; fi
echo "base_image=$BASE_IMAGE" >> "$GITHUB_OUTPUT"
echo "BASE_IMAGE=$BASE_IMAGE" >> "$GITHUB_ENV"
- name: Get last successful run
if: ${{ github.ref_type == 'branch' }}
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
run: |
gh run list -b "${{ github.ref_name }}" -w "${{ github.workflow }}" -s "success" -L 1 --json databaseId > last_run.json
echo "LAST_RUN_ID=$(jq -r '.[0].databaseId' last_run.json)" >> "$GITHUB_ENV"
- name: Download the previous digest
uses: actions/download-artifact@v4
continue-on-error: true
with:
name: digest
github-token: ${{ github.token }}
run-id: ${{ env.LAST_RUN_ID }}
- name: Check if there was an update to the base image
run: |
touch digest.txt
mv digest.txt last_digest.txt
skopeo inspect --raw docker://${{ env.BASE_IMAGE }} | sha256sum > digest.txt
echo Old digest is: $(cat last_digest.txt)
echo New digest is: $(cat digest.txt)
echo "HAS_UPDATES=$(cmp -s digest.txt last_digest.txt; echo $?)" >> "$GITHUB_ENV"
- name: Upload current digest
uses: actions/upload-artifact@v4
with:
name: digest
path: digest.txt
- name: Set output
id: set_output
run: |
if [ ${{ github.event_name == 'schedule'}} == false ]
then
echo action was manually run, updating either way
echo "has_updates=true" >> "$GITHUB_OUTPUT"
elif [ ${{ env.HAS_UPDATES }} == 1 ]
then
echo base image was updated since the last build
echo "has_updates=true" >> "$GITHUB_OUTPUT"
else
echo no updates to the base image since the last build
echo "has_updates=false" >> "$GITHUB_OUTPUT"
fi
build:
if: ${{ needs.check_update.outputs.has_updates == 'true' }}
needs: [check_update, verify_image]
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch || github.ref }}
cancel-in-progress: true
permissions:
packages: write
attestations: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: vanilla-os/vib-gh-action@v0.8.1
with:
recipe: 'recipe.yml'
plugins: 'Vanilla-OS/vib-fsguard:v1.5.3'
- uses: actions/upload-artifact@v4
with:
name: Containerfile
path: Containerfile
- name: Generate image name
run: |
REPO_OWNER_LOWERCASE=$(echo "${{ github.repository_owner }}" | tr '[:upper:]' '[:lower:]')
echo "REPO_OWNER_LOWERCASE=$REPO_OWNER_LOWERCASE" >> "$GITHUB_ENV"
echo "IMAGE_URL=ghcr.io/$REPO_OWNER_LOWERCASE/${{ env.CUSTOM_IMAGE_NAME }}" >> "$GITHUB_ENV"
- name: Set image info
run: |
echo -n "${{ needs.check_update.outputs.base_image }}" > ./includes.container/image-info/base-image-name
echo -n "${{ env.REPO_OWNER_LOWERCASE }}/${{ env.CUSTOM_IMAGE_NAME }}" > ./includes.container/image-info/image-name
- name: Docker meta
id: docker_meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_URL }}
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{raw}}
type=semver,pattern=v{{major}}
type=ref,event=branch
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
driver-opts: |
image=moby/buildkit:latest
network=host
- name: Login to GitHub Package Registry
uses: docker/login-action@v3
if: ${{ github.event_name != 'pull_request' }}
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push the Docker image
id: docker_build
uses: docker/build-push-action@v6
with:
context: .
file: Containerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
cache-from: |
type=registry,ref=${{ env.IMAGE_URL }}:buildcache
cache-to: |
type=registry,ref=${{ env.IMAGE_URL }}:buildcache,mode=max
platforms: linux/amd64
provenance: false
outputs: |
type=image,name=${{ env.IMAGE_URL }},push=true
- name: Attest pushed image
uses: actions/attest-build-provenance@v1
if: ${{ github.event_name != 'pull_request' }}
with:
subject-name: ${{ env.IMAGE_URL }}
subject-digest: ${{ steps.docker_build.outputs.digest }}
push-to-registry: false