Skip to content

Commit b63bdb3

Browse files
chensuyueedlee123
authored andcommitted
Stop CI test on rocm due to lack of test machine (opea-project#2017)
Signed-off-by: chensuyue <suyue.chen@intel.com> Signed-off-by: Ed Lee <16417837+edlee123@users.noreply.github.com>
1 parent a943345 commit b63bdb3

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/scripts/get_test_matrix.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ for example in ${examples}; do
4040
done
4141
fi
4242
for hw in ${run_hardware}; do
43+
# TODO: remove this condition when ROCm hardware is available
44+
if [[ "${hw}" == "rocm" ]]; then
45+
echo "Skip test on ROCm hardware for 2 weeks due to lack of test machine..."
46+
continue
47+
fi
4348
run_matrix="${run_matrix}{\"example\":\"${example}\",\"hardware\":\"${hw}\"},"
4449
done
4550
done

.github/workflows/weekly-example-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414

1515
env:
1616
EXAMPLES: ${{ vars.NIGHTLY_RELEASE_EXAMPLES }}
17-
NODES: "gaudi,xeon,rocm,arc"
17+
NODES: "gaudi,xeon,arc"
1818

1919
jobs:
2020
get-test-matrix:

0 commit comments

Comments
 (0)