Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: AJ Schmidt <[email protected]>
  • Loading branch information
AyodeAwe and ajschmidt8 authored Nov 28, 2023
1 parent 32f501c commit cb0c7e6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 4 additions & 2 deletions ci-conda.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ case "${LINUX_VER}" in
yum clean all
;;
*)
echo "Unsupported LINUX_VER: ${LINUX_VER}" && exit 1
echo "Unsupported LINUX_VER: ${LINUX_VER}"
exit 1
;;
esac
EOF
Expand Down Expand Up @@ -90,7 +91,8 @@ case "${CUDA_VER}" in
yum clean all
;;
*)
echo "Unsupported LINUX_VER: ${LINUX_VER}" && exit 1
echo "Unsupported LINUX_VER: ${LINUX_VER}"
exit 1
;;
esac
;;
Expand Down
6 changes: 4 additions & 2 deletions ci-wheel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ case "${LINUX_VER}" in
popd
;;
*)
echo "Unsupported LINUX_VER: ${LINUX_VER}" && exit 1
echo "Unsupported LINUX_VER: ${LINUX_VER}"
exit 1
;;
esac
EOF
Expand Down Expand Up @@ -186,7 +187,8 @@ case "${LINUX_VER}" in
CPPFLAGS="-I/usr/include/openssl" LDFLAGS="-L/usr/lib" pyenv install --verbose "${RAPIDS_PY_VERSION}"
;;
*)
echo "Unsupported LINUX_VER: ${LINUX_VER}" && exit 1
echo "Unsupported LINUX_VER: ${LINUX_VER}"
exit 1
;;
esac
EOF
Expand Down
3 changes: 2 additions & 1 deletion citestwheel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ ENV PATH="/pyenv/versions/${PYTHON_VER}/bin/:$PATH"
# Needed to download wheels for running tests
# Install the AWS CLI
RUN <<EOF
mkdir -p /aws_install && cd /aws_install
mkdir -p /aws_install
cd /aws_install
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
unzip awscli-bundle.zip
./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
Expand Down

0 comments on commit cb0c7e6

Please sign in to comment.