Skip to content

Commit 2a71f85

Browse files
committed
gh action
1 parent 2a1a2fe commit 2a71f85

File tree

1 file changed

+32
-4
lines changed

1 file changed

+32
-4
lines changed

.github/workflows/integ-tests.yml

+32-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,37 @@ on:
66
- develop
77

88
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:
1040
runs-on: ubuntu-latest
1141
environment:
1242
name: prod
@@ -15,7 +45,5 @@ jobs:
1545
- uses: actions/setup-python@v5
1646
with:
1747
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
2048
- name: run integration tests
21-
run: make integ-tests-with-docker
49+
run: make integ-tests-with-docker-old

0 commit comments

Comments
 (0)