-
Notifications
You must be signed in to change notification settings - Fork 171
63 lines (53 loc) · 1.31 KB
/
test-external.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
name: Test External Git & Registry
on:
pull_request:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
merge_group:
paths-ignore:
- "**.md"
- "**.jpg"
- "**.png"
- "**.gif"
- "**.svg"
- "adr/**"
- "docs/**"
- "CODEOWNERS"
permissions:
contents: read
# Abort prior jobs in the same workflow / PR
concurrency:
group: e2e-external-${{ github.ref }}
cancel-in-progress: true
jobs:
validate-external:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup golang
uses: ./.github/actions/golang
- name: Build binary and zarf packages
uses: ./.github/actions/packages
with:
init-package: "false"
build-examples: "false"
- name: Setup k3d
uses: ./.github/actions/k3d
- name: Cleanup files
uses: ./.github/actions/cleanup-files
- name: Run external service test
run: make test-external
- name: get cluster info
uses: ./.github/actions/debug-cluster
if: always()
- name: Save logs
if: always()
uses: ./.github/actions/save-logs