Fix type in Dockerfile and set the UPLOAD_URL variable to the correct location.
This commit is contained in:
parent
b34d7772e3
commit
0878879bc8
2 changed files with 3 additions and 2 deletions
|
@ -18,8 +18,8 @@ RUN echo "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.6 main" | tee
|
||||||
RUN update-alternatives --set c++ /usr/bin/clang++
|
RUN update-alternatives --set c++ /usr/bin/clang++
|
||||||
|
|
||||||
# Install azure cli. We need this to publish atrifacts.
|
# Install azure cli. We need this to publish atrifacts.
|
||||||
RUN apt-get install nodejs-legacy \
|
RUN apt-get install nodejs-legacy && \
|
||||||
apt-get install npm \
|
apt-get install npm && \
|
||||||
npm install -g azure-cli
|
npm install -g azure-cli
|
||||||
|
|
||||||
# Set working directory
|
# Set working directory
|
||||||
|
|
|
@ -165,6 +165,7 @@ upload_installers_to_blob_storage(){
|
||||||
# debain packages need to be uploaded to the PPA feed too
|
# debain packages need to be uploaded to the PPA feed too
|
||||||
if [[ $installfile == *.deb ]]; then
|
if [[ $installfile == *.deb ]]; then
|
||||||
DEB_FILE=$installfile
|
DEB_FILE=$installfile
|
||||||
|
UPLOAD_URL="https://$STORAGE_ACCOUNT.blob.core.windows.net/$STORAGE_CONTAINER/$blob"
|
||||||
generate_repoclient_json
|
generate_repoclient_json
|
||||||
call_repo_client
|
call_repo_client
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue