Skip to content

Commit

Permalink
Merge branch 'master' into feature/vcx-v3-delete-credential
Browse files Browse the repository at this point in the history
  • Loading branch information
mirgee authored Jun 23, 2020
2 parents ec41681 + 4595137 commit c6f71cb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile.cd
Original file line number Diff line number Diff line change
Expand Up @@ -1766,7 +1766,7 @@ def shell(command) {
}

def setupRust() {
shell("rustup default 1.39.0")
shell("rustup default 1.40.0")
}

def androidPublishing() {
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile.ci
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ def shell(command) {
}

def setupRust() {
shell("rustup default 1.39.0")
shell("rustup default 1.40.0")
}

def setupBrewPackages() {
Expand Down
2 changes: 1 addition & 1 deletion libindy/ci/centos.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN wget https://repos.fedorapeople.org/repos/dchen/apache-maven/epel-apache-mav
RUN sed -i s/\$releasever/6/g /etc/yum.repos.d/epel-apache-maven.repo
RUN yum install -y apache-maven

ENV RUST_ARCHIVE=rust-1.39.0-x86_64-unknown-linux-gnu.tar.gz
ENV RUST_ARCHIVE=rust-1.40.0-x86_64-unknown-linux-gnu.tar.gz
ENV RUST_DOWNLOAD_URL=https://static.rust-lang.org/dist/$RUST_ARCHIVE

RUN mkdir -p /rust
Expand Down
2 changes: 1 addition & 1 deletion libindy/ci/ubuntu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN useradd -ms /bin/bash -u $uid indy
USER indy

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.39.0
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.40.0
ENV PATH /home/indy/.cargo/bin:$PATH

RUN cargo install cargo-deb
Expand Down
2 changes: 1 addition & 1 deletion libindy/ci/ubuntu18.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ RUN apt-get install -y wget
RUN useradd -ms /bin/bash -u $uid indy
USER indy

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.39.0
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.40.0
ENV PATH /home/indy/.cargo/bin:$PATH

RUN cargo install cargo-deb
Expand Down
2 changes: 1 addition & 1 deletion vcx/ci/ubuntu.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ ARG uid=1000
RUN useradd -ms /bin/bash -u $uid vcx
USER vcx

ARG RUST_VER="1.39.0"
ARG RUST_VER="1.40.0"
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VER
ENV PATH /home/vcx/.cargo/bin:$PATH

Expand Down
2 changes: 1 addition & 1 deletion vcx/libvcx/build_scripts/ios/mac/mac.01.libindy.setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fi

if [[ $RUSTUP_VERSION =~ ^'rustup ' ]]; then
rustup update
rustup default 1.39.0
rustup default 1.40.0
rustup component add rls-preview rust-analysis rust-src
echo "Using rustc version $(rustc --version)"
rustup target add aarch64-apple-ios armv7-apple-ios armv7s-apple-ios x86_64-apple-ios i386-apple-ios
Expand Down

0 comments on commit c6f71cb

Please sign in to comment.