Skip to content

Commit b5c13dc

Browse files
ci: remove tensorflow from image updates in odh sync workflow
1 parent 000d9c3 commit b5c13dc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/odh-notebooks-sync.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ jobs:
9797
# list all Pipfile paths having Codeflare-SDK listed
9898
# Extracting only directories from file paths, excluding a `.gitworkflow` and `.git` directory
9999
# Extracting Intel directories as they are not supported in RHOAI
100-
directories+=($(grep --exclude-dir=.git --exclude-dir=.github --exclude-dir=intel --exclude-dir=jupyter/intel --include="Pipfile*" -rl "${package_name} = \"~=.*\"" | xargs dirname | sort | uniq))
100+
# Removing tensorflow image TEMPORARILY until solution has been made for the tf2onnx package dependency resolution
101+
directories+=($(grep --exclude-dir=.git --exclude-dir=.github --exclude-dir=intel --exclude-dir=tensorflow --exclude-dir=rocm-tensorflow --include="Pipfile*" -rl "${package_name} = \"~=.*\"" | xargs dirname | sort | uniq))
101102
counter=0
102103
total=${#directories[@]}
103104
for dir in "${directories[@]}"; do

0 commit comments

Comments
 (0)