-
Notifications
You must be signed in to change notification settings - Fork 30
172 lines (147 loc) · 5.89 KB
/
test.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
on:
push:
pull_request:
workflow_dispatch:
name: CI-TEST
env:
IMAGE_NAME: ${{ github.repository }}-test
IMAGE_TAG: ${{ github.ref_name }}
defaults:
run:
shell: bash
working-directory: /home/runner
jobs:
create-test-docker-image:
permissions:
contents: read
packages: write
attestations: write
id-token: write
name: Create Test Docker image
runs-on: ubuntu-latest
outputs:
NAME: ${{ env.IMAGE_NAME }}
TAG: ${{ env.IMAGE_TAG }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Escape Docker image tag
run: |
echo "IMAGE_TAG=$(echo ${{ env.IMAGE_TAG }} | sed -e 's/\//-/g')" >> $GITHUB_ENV
echo "IMAGE_NAME: ${{ env.IMAGE_NAME }}"
echo "IMAGE_TAG: ${{ env.IMAGE_TAG }}"
- name: Use 'main' Docker image tag if this is a PR from a fork
id: origin
shell: bash
if: github.event.pull_request.head.repo.fork
run: |
echo gh.pr: ${{ github.event.pull_request.repo.full_name }}
echo gh.fork: ${{ github.event.pull_request.head.repo.fork }}
echo gh.repo: ${{ github.repository }}
echo 'IMAGE_TAG=main' >> $GITHUB_ENV
- name: Check if Dockerfile has changed
uses: dorny/paths-filter@v3
id: changed
with:
base: ${{ github.ref_name }}
filters: |
dockerfile:
- "appimage/test/docker/**"
- name: Check if Docker image exists
id: exists
shell: bash
run: |
declare -a HEADERS=(
'-H' "Accept: application/vnd.oci.image.manifest.v1+json"
'-H' "Accept: application/vnd.oci.image.index.v1+json"
'-H' "Authorization: Bearer $(echo ${{ secrets.GITHUB_TOKEN }} | base64)"
)
RESULT=$(curl "${HEADERS[@]}" https://ghcr.io/v2/${IMAGE_NAME}/manifests/${IMAGE_TAG})
echo 'dockerimage<<EOF' >> $GITHUB_OUTPUT
echo ${RESULT} | jq 'has("manifests")' >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
echo
echo exists: ${{ steps.exists.outputs.dockerimage }}
- name: Check if we need to build the Docker image
id: dockerimage
if: |
! github.event.pull_request.head.repo.fork &&
(steps.changed.outputs.dockerfile == 'true' || steps.exists.outputs.dockerimage == 'false')
run: |
echo 'build=true' >> $GITHUB_OUTPUT
- name: Debug Check
shell: bash
run: |
echo IMAGE_NAME: ${{ env.IMAGE_NAME }} # <repo-owner>/<repo>-test
echo IMAGE_TAG: ${{ env.IMAGE_TAG }} # <gh.ref_name>
echo
echo gh.actor: ${{ github.actor }} # antoinevg antoinevg
echo gh.trig_actor: ${{ github.triggering_actor }} # antoinevg antoinevg
echo gh.repo: ${{ github.repository }} # antoinevg/packetry greatscottgadgets/packetry
echo gh.repo_owner: ${{ github.repository_owner }} # antoinevg greatscottgadgets
echo gh.base_ref: ${{ github.base_ref }} # main
echo gh.head_ref: ${{ github.head_ref }} # antoinevg/fix-pr-403
echo gh.ref_name: ${{ github.ref_name }} # antoinevg/fix-pr-403 149/merge
echo
echo check.forked: ${{ github.event.pull_request.head.repo.fork }} # true
echo check.changed: ${{ steps.changed.outputs.dockerfile }} # true true
echo check.exists: ${{ steps.exists.outputs.dockerimage }} # false false
echo
echo build: ${{ steps.dockerimage.outputs.build }} # bump
- name: Log in to the Container registry
if: steps.dockerimage.outputs.build
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
if: steps.dockerimage.outputs.build
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
if: steps.dockerimage.outputs.build
id: push
uses: docker/build-push-action@v6
with:
context: appimage/test/docker/
push: true
tags: ghcr.io/${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
cache-from: type=gha, scope=${{ env.IMAGE_TAG }}
cache-to: type=gha, scope=${{ env.IMAGE_TAG }}, mode=max
- name: Generate artifact attestation
if: steps.dockerimage.outputs.build
uses: actions/attest-build-provenance@v1
with:
subject-name: ghcr.io/${{ env.IMAGE_NAME }}
subject-digest: ${{ steps.push.outputs.digest }}
push-to-registry: true
test-remote:
permissions:
contents: read
packages: read
needs: create-test-docker-image
name: Run test action
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ needs.create-test-docker-image.outputs.NAME }}:${{ needs.create-test-docker-image.outputs.TAG }}
options: --user root # see: https://github.com/actions/checkout/issues/1014
credentials:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Check image name & tag
run: |
echo "NAME: ${{ needs.create-test-docker-image.outputs.NAME }}"
echo "TAG: ${{ needs.create-test-docker-image.outputs.TAG }}"
- name: Checkout repository
uses: actions/checkout@v4
- name: Check environment
run: |
echo PATH: $PATH
echo HOME: $HOME
echo pwd: `pwd`
ls -al
- name: Test Action
uses: ./appimage/test/
with:
executable: ./target/release/packetry