Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
szha committed Jan 8, 2020
1 parent e65fc4b commit f2035bf
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions ci/docker/Dockerfile.build.ubuntu_build_cuda
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ COPY install/ubuntu_perl.sh /work/
RUN /work/ubuntu_perl.sh
COPY install/ubuntu_clang.sh /work/
RUN /work/ubuntu_clang.sh
COPY install/ubuntu_ar.sh /work/
RUN /work/ubuntu_ar.sh
COPY install/ubuntu_binutils.sh /work/
RUN /work/ubuntu_binutils.sh

ENV CUDNN_VERSION=7.6.0.64
ENV CUDNN_VERSION=7.6.5.32
COPY install/ubuntu_cudnn.sh /work/
RUN /work/ubuntu_cudnn.sh

Expand Down
4 changes: 2 additions & 2 deletions ci/docker/Dockerfile.publish.ubuntu1404_cpu
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ WORKDIR /work/deps
COPY install/ubuntu_publish.sh /work/
RUN /work/ubuntu_publish.sh

COPY install/ubuntu_ar.sh /work/
RUN /work/ubuntu_ar.sh
COPY install/ubuntu_binutils.sh /work/
RUN /work/ubuntu_binutils.sh

ARG USER_ID=0
ARG GROUP_ID=0
Expand Down
4 changes: 2 additions & 2 deletions ci/docker/Dockerfile.publish.ubuntu1404_gpu
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ WORKDIR /work/deps
COPY install/ubuntu_publish.sh /work/
RUN /work/ubuntu_publish.sh

COPY install/ubuntu_ar.sh /work/
RUN /work/ubuntu_ar.sh
COPY install/ubuntu_binutils.sh /work/
RUN /work/ubuntu_binutils.sh

ARG USER_ID=0
ARG GROUP_ID=0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ tar -xvf binutils-2.27.tar.gz && cd binutils-2.27
./configure --prefix=/opt/binutils_other --exec-prefix=/opt/binutils_install
make -j$(nproc)
make install
ln -s /opt/binutils_install/bin/ar /usr/local/bin/ar
ls /opt/binutils_install/bin/ | xargs -I{} ln -s /opt/binutils_install/bin/{} /usr/local/bin/{}
2 changes: 1 addition & 1 deletion ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2064,7 +2064,7 @@ cd_s3_publish() {
set -ex
pip3 install --user awscli
filepath=$(readlink -f wheel_build/dist/*.whl)
filename=$(basename $file_path)
filename=$(basename $filepath)
variant=$(echo $filename | cut -d'-' -f1 | cut -d'_' -f2 -s)
aws s3 cp --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers,full=id=43f628fab72838a4f0b929d7f1993b14411f4b0294b011261bc6bd3e950a6822 s3://apache-mxnet/dist/${variant}/${filename}
}
Expand Down

0 comments on commit f2035bf

Please sign in to comment.