File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed
Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,15 @@ jobs:
184184 - test : TestStatefulModel
185185 instance : g6
186186 failure-prefix : lmi
187+ - test : TestSageMakerCompatibility
188+ instance : cpu
189+ failure-prefix : cpu
190+ - test : TestCustomFormatters
191+ instance : cpu
192+ failure-prefix : cpu
193+ - test : TestXgbSkl
194+ instance : cpu
195+ failure-prefix : cpu
187196 outputs :
188197 failure_cpu : ${{ steps.test-failure.outputs.failure_cpu }}
189198 failure_gpu : ${{ steps.test-failure.outputs.failure_gpu }}
Original file line number Diff line number Diff line change @@ -4,17 +4,18 @@ set -ex
44
55ARCH=$1
66
7+ # Download custom s5cmd binary built with Go 1.24.2
78if [[ $ARCH == " aarch64" ]]; then
8- curl https://github.com/peak/ s5cmd/releases/download/v2.3.0/s5cmd_2.3.0_Linux- arm64.tar.gz -L -o s5cmd.tar.gz
9+ curl -f https://publish.djl.ai/ s5cmd/go1.24.2/s5cmd-linux- arm64 -L -o s5cmd
910else
10- curl https://github.com/peak/ s5cmd/releases/download/v2.3.0/s5cmd_2.3.0_Linux-64bit.tar.gz -L -o s5cmd.tar.gz
11+ curl -f https://publish.djl.ai/ s5cmd/go1.24.2/s5cmd-linux-amd64 -L -o s5cmd
1112fi
1213
1314INSTALL_DIR=" /opt/djl/bin"
1415
1516mkdir -p " ${INSTALL_DIR} "
16- tar -xvf s5cmd.tar.gz -C " ${INSTALL_DIR} "
17- rm -rf s5cmd.tar.gz
17+ mv s5cmd " ${INSTALL_DIR} / "
18+ chmod +x " ${INSTALL_DIR} / s5cmd"
1819
1920export PATH=" ${INSTALL_DIR} :${PATH} "
2021echo " export PATH=${INSTALL_DIR} :\$ PATH" >> ~/.bashrc
You can’t perform that action at this time.
0 commit comments