-
Notifications
You must be signed in to change notification settings - Fork 36
47 lines (40 loc) · 1.23 KB
/
integration-tests.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
name: "integration tests"
on:
push:
branches:
- master
- develop
- 'release/**'
pull_request:
branches:
- '**'
jobs:
integration-tests:
strategy:
matrix:
to_test:
- "mnist-keras kerashelper"
- "mnist-pytorch pytorchhelper"
python_version: ["3.8", "3.9","3.10"]
os:
- ubuntu-20.04
- ubuntu-22.04
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python_version }}
- name: configure ${{ matrix.to_test }}
run: |
echo 'BASE_IMG=python:${{ matrix.python_version }}-slim' > .env
.ci/tests/examples/configure.sh ${{ matrix.to_test }}
- name: run ${{ matrix.to_test }}
run: .ci/tests/examples/run.sh ${{ matrix.to_test }}
- name: run ${{ matrix.to_test }} inference
run: .ci/tests/examples/run_inference.sh ${{ matrix.to_test }}
if: ${{ matrix.os != 'macos-11' && matrix.to_test == 'mnist-keras keras' }} # example available for Keras
- name: print logs
if: failure()
run: .ci/tests/examples/print_logs.sh