File tree 1 file changed +29
-4
lines changed
1 file changed +29
-4
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- checkout
12
12
- run : chmod u+x install_dependencies.sh && ./install_dependencies.sh
13
- - run : chmod u+x run_tests.sh && ./run_tests.sh
13
+ - run : chmod u+x compile_tests.sh && ./compile_tests.sh
14
+ - parallelism : 2
15
+ steps :
16
+ - name : Run pytest
17
+ command : pytest erpcgen/test/
18
+ - name : Run unit tests
19
+ command : python3 test/run_unit_tests.py
14
20
- store_artifacts :
15
21
path : ./Release/Linux/erpcgen/erpcgen
16
22
build-linux-clang :
19
25
steps :
20
26
- checkout
21
27
- run : chmod u+x install_dependencies.sh && ./install_dependencies.sh clang
22
- - run : chmod u+x run_tests.sh && ./run_tests.sh clang
28
+ - run : chmod u+x compile_tests.sh && ./compile_tests.sh clang
29
+ - parallelism : 2
30
+ steps :
31
+ - name : Run pytest
32
+ command : pytest erpcgen/test/
33
+ - name : Run unit tests
34
+ command : python3 test/run_unit_tests.py
23
35
# - store_artifacts:
24
36
# path: ./Release/Linux/erpcgen/erpcgen
25
37
build-mac-gcc :
29
41
steps :
30
42
- checkout
31
43
- run : chmod u+x install_dependencies.sh && ./install_dependencies.sh
32
- - run : chmod u+x run_tests.sh && ./run_tests.sh
44
+ - run : chmod u+x compile_tests.sh && ./compile_tests.sh
45
+ - parallelism : 2
46
+ steps :
47
+ - name : Run pytest
48
+ command : pytest erpcgen/test/
49
+ - name : Run unit tests
50
+ command : python3 test/run_unit_tests.py
33
51
- store_artifacts :
34
52
path : ./Release/Darwin/erpcgen/erpcgen
35
53
build-mac-clang :
39
57
steps :
40
58
- checkout
41
59
- run : chmod u+x install_dependencies.sh && ./install_dependencies.sh clang
42
- - run : chmod u+x run_tests.sh && ./run_tests.sh clang
60
+ - run : chmod u+x compile_tests.sh && ./compile_tests.sh clang
61
+ - parallelism : 2
62
+ steps :
63
+ - name : Run pytest
64
+ command : pytest erpcgen/test/
65
+ - name : Run unit tests
66
+ command : python3 test/run_unit_tests.py
67
+
43
68
# - store_artifacts:
44
69
# path: ./Release/Darwin/erpcgen/erpcgen
45
70
build-windows-mingw :
You can’t perform that action at this time.
0 commit comments