Skip to content

Commit 580fe8f

Browse files
authored
Xgboost enable zcc automation (aws#129)
* Adding zcc automation for xgboost * Adding tensorflow-datasets for TF * removing force reinstall * install latest pyYaml for xgboost
1 parent fbdd1ca commit 580fe8f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

config/install_smdebug.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ cd $CODEBUILD_SRC_DIR
88
if [ "$SMDEBUG_S3_BINARY" ]; then
99
mkdir -p s3_pip_binary
1010
aws s3 cp "$SMDEBUG_S3_BINARY" s3_pip_binary
11-
pip install --force-reinstall --upgrade s3_pip_binary/*.whl
11+
pip install --upgrade s3_pip_binary/*.whl
1212
else
1313
python setup.py bdist_wheel --universal && pip install --upgrade --force-reinstall dist/*.whl
1414
fi
@@ -19,7 +19,12 @@ if [ "$run_pytest_mxnet" == 'enable' ]; then
1919
fi
2020
if [ "$run_pytest_tensorflow" == 'enable' ]; then
2121
./config/check_smdebug_install.sh tensorflow
22+
pip install tensorflow_datasets
2223
fi
2324
if [ "$run_pytest_pytorch" == 'enable' ]; then
2425
./config/check_smdebug_install.sh torch
2526
fi
27+
if [ "$run_pytest_xgboost" == 'enable' ]; then
28+
./config/check_smdebug_install.sh xgboost
29+
pip install --ignore-installed PyYAML
30+
fi

0 commit comments

Comments
 (0)