-
Notifications
You must be signed in to change notification settings - Fork 29
149 lines (122 loc) · 4.07 KB
/
integration.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
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: integration
on:
push:
branches:
- main
- 'release/**'
- remote-agent
pull_request:
branches:
- main
- 'release/**'
- remote-agent
workflow_dispatch:
env:
ContainerRegistry: "ghcr.io"
ContainerRegistryRepo: "ghcr.io/eclipse-symphony"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22.4
- name: Set up custom GOPATH
run: |
mkdir -p /home/runner/go
echo "export GOPATH=/home/runner/go" >> $HOME/.bashrc
echo "export PATH=\$PATH:\$GOPATH/bin" >> $HOME/.bashrc
source $HOME/.bashrc
- name: Install make
run: sudo apt-get update && sudo apt-get install -y build-essential
- name: Check docker version and images
run: docker --version && docker images
- name: Install kubectl
run: |
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
chmod +x kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
kubectl version --client
kubectl config view
- name: Install Helm
run: |
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
chmod 700 get_helm.sh
./get_helm.sh
- name: Install minikube
run: |
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
chmod +x minikube
sudo mv minikube /usr/local/bin/
minikube start
kubectl config view
- name: Install Mage
run: |
cd ..
git clone https://github.com/magefile/mage
cd mage
go run bootstrap.go
cd ..
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
registry: ${{ env.ContainerRegistry }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build docker images
run: |
cd test/localenv/
mage build:all
mage cluster:up
- name: Go work init
run: |
mv go.work.bk go.work
- name: Run integration tests 00
run: |
cd test/integration/scenarios/00.unit/ && mage test
- name: Run integration tests 01
run: |
cd test/integration/scenarios/01.update/ && mage test
- name: Run integration tests 02
run: |
cd test/integration/scenarios/02.basic/ && mage test
- name: Run integration tests 03
run: |
cd test/integration/scenarios/03.basicWithNsDelete/ && mage test
- name: Run integration tests 04 without labeling
run: |
export REPO_PATH="${{ github.workspace }}"
echo "REPO_PATH=$REPO_PATH"
cd test/integration/scenarios/04.workflow/ && mage test false
- name: Run integration tests 04 with labeling
run: |
export REPO_PATH="${{ github.workspace }}"
echo "REPO_PATH=$REPO_PATH"
cd test/integration/scenarios/04.workflow/ && mage test true
- name: Run integration tests 05
run: |
cd test/integration/scenarios/05.catalogNconfigmap/ && mage test
- name: Run integration tests 07
run: |
cd test/integration/scenarios/07.maestroTest/ && mage test
- name: Run integration tests 08
run: |
cd test/integration/scenarios/08.webhook/ && mage test
- name: Run integration tests 09
run: |
cd test/integration/scenarios/09.stress/ && mage test
- name: Run integration tests 10
run: |
cd test/integration/scenarios/10.catalogEval/ && mage test
- name: Collect and upload symphony logs
uses: actions/upload-artifact@v4
with:
name: symphony-logs
path: |
/tmp/symphony-integration-test-logs/**/*.log
continue-on-error: true
if: always()