-
Notifications
You must be signed in to change notification settings - Fork 19
54 lines (44 loc) · 1.25 KB
/
action-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
name: Run Check
on:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
env:
ARCH: x86_64
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- uses: azure/setup-kubectl@v4
- uses: fermyon/actions/spin/setup@v1
with:
version: "v2.7.0"
- name: Setup build env
run: |
make setup
- name: Extract containerd-shim-spin-linux-${{ env.ARCH }}
run: |
mkdir -p ./bin
for f in containerd-shim-spin-*-linux-${{ env.ARCH }}/containerd-shim-spin-*-linux-${{ env.ARCH }}.tar.gz
do tar -xzf "$f" -C ./bin
done
- name: Install k3d
run: make install-k3d
- name: Run integration tests
run: BIN_DIR="./bin" IS_CI=true make integration-tests
- name: Collect debug logs
if: failure()
run: make tests/collect-debug-logs
- name: Upload debug logs
if: failure()
uses: actions/upload-artifact@v4
with:
name: debug-logs
path: debug-logs/
retention-days: 5
- name: Output runner storage on failure
if: failure()
run: df -h
- name: Clean up k3d
if: always()
run: make tests/clean