@@ -50,50 +50,53 @@ jobs:
50
50
needs : build
51
51
runs-on : self-hosted
52
52
env :
53
- unit-test-file : test_all.txt
54
- regression-test-file : test_regression.txt
53
+ unit-test-file : test_all.log
54
+ regression-test-file : test_regression.log
55
55
strategy :
56
56
fail-fast : false
57
57
matrix :
58
58
include :
59
59
- gpu : NVIDIA-GeForce-GT-1030
60
60
61
61
steps :
62
- - name : Run unit-tests
63
- working-directory : ${{ env.build_dir }}
62
+ - name : Fail
64
63
run : |
65
- source scripts/run_tests_all.sh | tee ${{ env.unit-test-file }}
64
+ exit 1
65
+ # - name: Run unit-tests
66
+ # working-directory: ${{ env.build_dir }}
67
+ # run: |
68
+ # source scripts/run_tests_all.sh | tee ${{ env.unit-test-file }}
66
69
67
- - name : Upload unit tests resutls
68
- uses : actions/upload-artifact@v4
69
- with :
70
- name : ${{ env.unit-test-file }}
71
- path : ${{ env.build_dir }}/${{ env.unit-test-file }}
70
+ # - name: Upload unit tests resutls
71
+ # uses: actions/upload-artifact@v4
72
+ # with:
73
+ # name: ${{ env.unit-test-file }}
74
+ # path: ${{ env.build_dir }}/${{ env.unit-test-file }}
72
75
73
- - name : Check for unit tests results
74
- working-directory : ${{ env.build_dir }}
75
- run : |
76
- if grep -q "FAILED" ${{ env.unit-test-file }}; then
77
- exit 1
78
- fi
76
+ # - name: Check for unit tests results
77
+ # working-directory: ${{ env.build_dir }}
78
+ # run: |
79
+ # if grep -q "FAILED" ${{ env.unit-test-file }}; then
80
+ # exit 1
81
+ # fi
79
82
80
- - name : Run regression-tests
81
- working-directory : ${{ env.build_dir }}/python
82
- run : |
83
- source run_tests.sh | tee ${{ env.regression-test-file }}
83
+ # - name: Run regression-tests
84
+ # working-directory: ${{ env.build_dir }}/python
85
+ # run: |
86
+ # source run_tests.sh 2>&1 | tee ${{ env.regression-test-file }}
84
87
85
- - name : Upload regression tests resutls
86
- uses : actions/upload-artifact@v4
87
- with :
88
- name : ${{ env.regression-test-file }}
89
- path : ${{ env.build_dir }}/python/${{ env.regression-test-file }}
88
+ # - name: Upload regression tests resutls
89
+ # uses: actions/upload-artifact@v4
90
+ # with:
91
+ # name: ${{ env.regression-test-file }}
92
+ # path: ${{ env.build_dir }}/python/${{ env.regression-test-file }}
90
93
91
- - name : Check for regression tests results
92
- working-directory : ${{ env.build_dir }}/python
93
- run : |
94
- if grep -q "FAILED" ${{ env.regression-test-file }}; then
95
- exit 1
96
- fi
94
+ # - name: Check for regression tests results
95
+ # working-directory: ${{ env.build_dir }}/python
96
+ # run: |
97
+ # if grep -q "FAILED" ${{ env.regression-test-file }}; then
98
+ # exit 1
99
+ # fi
97
100
98
101
clean :
99
102
name : Cleanup workspace
0 commit comments