File tree 1 file changed +32
-4
lines changed
1 file changed +32
-4
lines changed Original file line number Diff line number Diff line change 6
6
- develop
7
7
8
8
jobs :
9
- integ-tests :
9
+ go-tests :
10
+ runs-on : ubuntu-latest
11
+ environment :
12
+ name : prod
13
+ steps :
14
+ - uses : actions/checkout@v4
15
+ - name : run go tests
16
+ run : make tests-with-docker
17
+ integ-tests-x86 :
18
+ runs-on : ubuntu-latest
19
+ environment :
20
+ name : prod
21
+ steps :
22
+ - uses : actions/checkout@v4
23
+ - uses : actions/setup-python@v5
24
+ with :
25
+ python-version : ' 3.11'
26
+ - name : run integration tests
27
+ run : make integ-tests-with-docker-x86-64
28
+ integ-tests-arm64 :
29
+ runs-on : ubuntu-latest
30
+ environment :
31
+ name : prod
32
+ steps :
33
+ - uses : actions/checkout@v4
34
+ - uses : actions/setup-python@v5
35
+ with :
36
+ python-version : ' 3.11'
37
+ - name : run integration tests
38
+ run : make integ-tests-with-docker-arm64
39
+ integ-tests-old :
10
40
runs-on : ubuntu-latest
11
41
environment :
12
42
name : prod
15
45
- uses : actions/setup-python@v5
16
46
with :
17
47
python-version : ' 3.11'
18
- - name : allows us to build arm64 images
19
- run : docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
20
48
- name : run integration tests
21
- run : make integ-tests-with-docker
49
+ run : make integ-tests-with-docker-old
You can’t perform that action at this time.
0 commit comments