|
1 | 1 | name: 1 - Run Interoperability Tests |
2 | 2 | run-name: ${{ github.actor }} is testing out GitHub Actions 🚀 |
| 3 | +env: |
| 4 | + # comma separated list of tests to skip |
| 5 | + SKIP_EXEC: "connext_dds-6.1.2_shape_main_linux" |
3 | 6 | on: workflow_dispatch |
4 | 7 | jobs: |
5 | 8 | generate_timestamp: |
|
32 | 35 | with: |
33 | 36 | latest: true |
34 | 37 | fileName: "*" |
| 38 | + - name: Skip tests |
| 39 | + run: | |
| 40 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 41 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 42 | + for name in ${clean_list//,/ }; do |
| 43 | + rm -f "$name.zip" |
| 44 | + done |
35 | 45 | - name: Unzip |
36 | 46 | run: unzip '*.zip' -d executables |
37 | 47 | - name: Setting up environment |
|
81 | 91 | with: |
82 | 92 | latest: true |
83 | 93 | fileName: "*" |
| 94 | + - name: Skip tests |
| 95 | + run: | |
| 96 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 97 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 98 | + for name in ${clean_list//,/ }; do |
| 99 | + rm -f "$name.zip" |
| 100 | + done |
84 | 101 | - name: Unzip |
85 | 102 | run: unzip '*.zip' -d executables |
86 | 103 | - name: Setting up environment |
@@ -130,6 +147,13 @@ jobs: |
130 | 147 | with: |
131 | 148 | latest: true |
132 | 149 | fileName: "*" |
| 150 | + - name: Skip tests |
| 151 | + run: | |
| 152 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 153 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 154 | + for name in ${clean_list//,/ }; do |
| 155 | + rm -f "$name.zip" |
| 156 | + done |
133 | 157 | - name: Unzip |
134 | 158 | run: unzip '*.zip' -d executables |
135 | 159 | - name: Setting up environment |
@@ -179,6 +203,13 @@ jobs: |
179 | 203 | with: |
180 | 204 | latest: true |
181 | 205 | fileName: "*" |
| 206 | + - name: Skip tests |
| 207 | + run: | |
| 208 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 209 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 210 | + for name in ${clean_list//,/ }; do |
| 211 | + rm -f "$name.zip" |
| 212 | + done |
182 | 213 | - name: Unzip |
183 | 214 | run: unzip '*.zip' -d executables |
184 | 215 | - name: Setting up environment |
@@ -228,6 +259,13 @@ jobs: |
228 | 259 | with: |
229 | 260 | latest: true |
230 | 261 | fileName: "*" |
| 262 | + - name: Skip tests |
| 263 | + run: | |
| 264 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 265 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 266 | + for name in ${clean_list//,/ }; do |
| 267 | + rm -f "$name.zip" |
| 268 | + done |
231 | 269 | - name: Unzip |
232 | 270 | run: unzip '*.zip' -d executables |
233 | 271 | - name: Setting up environment |
@@ -277,6 +315,13 @@ jobs: |
277 | 315 | with: |
278 | 316 | latest: true |
279 | 317 | fileName: "*" |
| 318 | + - name: Skip tests |
| 319 | + run: | |
| 320 | + echo "Skipping the following tests: $SKIP_EXEC" |
| 321 | + clean_list="${SKIP_EXEC//[[:space:]]/}" |
| 322 | + for name in ${clean_list//,/ }; do |
| 323 | + rm -f "$name.zip" |
| 324 | + done |
280 | 325 | - name: Unzip |
281 | 326 | run: unzip '*.zip' -d executables |
282 | 327 | - name: Setting up environment |
|
0 commit comments