-
Notifications
You must be signed in to change notification settings - Fork 20
74 lines (74 loc) · 1.91 KB
/
ci.yaml
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
name: CI
on:
pull_request:
push:
branches:
- 'main'
defaults:
run:
working-directory: v2
env:
go-version: "1.20"
cache-version: 1
jobs:
test:
name: Small test
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.go-version }}
- name: Cache tools
id: cache-tools
uses: actions/cache@v3
with:
path: |
v2/bin
v2/include
key: cache-${{ env.cache-version }}-go-${{ env.go-version }}-${{ hashFiles('v2/Makefile') }}
- run: make setup
if: steps.cache-tools.outputs.cache-hit != 'true'
- run: make test
- run: make test-nodenet
timeout-minutes: 10
- run: make test-founat
timeout-minutes: 10
- run: make check-generate
e2e:
name: End-to-end Test
strategy:
matrix:
kindest-node: ["1.25.9", "1.26.4", "1.27.1"]
ip-version: ["ipv4", "ipv6"]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ env.go-version }}
- run: make image
- run: make certs
- name: Enable docker IPv6 mode
if: matrix.ip-version == 'ipv6'
working-directory: v2/e2e
run: |
sudo mkdir -p /etc/docker
sudo cp daemon.json /etc/docker/daemon.json
sudo systemctl restart docker.service
sleep 10
echo TEST_IPV6=true >> $GITHUB_ENV
- run: make start KUBERNETES_VERSION=${{ matrix.kindest-node }}
working-directory: v2/e2e
- run: make install-coil
working-directory: v2/e2e
- run: make test
working-directory: v2/e2e
- run: make logs
working-directory: v2/e2e
if: always()
- uses: actions/upload-artifact@v3
if: always()
with:
name: logs-${{ matrix.ip-version }}-${{ matrix.kindest-node }}.tar.gz
path: v2/e2e/logs.tar.gz