Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ orbs:

executors:
rust:
docker: [{ image: rust:1.34.0 }]
docker: [{ image: rust:1.39.0 }]

commands:
restore_target:
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
working_directory: /Users/distiller/root/project
steps:
- attach_workspace: { at: /Users/distiller }
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain 1.34.0
- run: curl https://sh.rustup.rs -sSf | sh -s -- -y --no-modify-path --default-toolchain 1.39.0
- run: sudo ln -s $CARGO_HOME/bin/* /usr/local/bin
- restore_target: { job: dist-macos }
- run: cargo build --release --target x86_64-apple-darwin -p conjure-rust
Expand All @@ -109,7 +109,7 @@ jobs:
- attach_workspace: { at: C:\Users\circleci }
- run: |
$progressPreference = "silentlyContinue"
Invoke-WebRequest "https://static.rust-lang.org/dist/rust-1.34.0-x86_64-pc-windows-msvc.exe" -outfile rust.exe
Invoke-WebRequest "https://static.rust-lang.org/dist/rust-1.39.0-x86_64-pc-windows-msvc.exe" -outfile rust.exe
- run: .\rust.exe /VERYSILENT /NORESTART /DIR="C:\Program Files\Rust"
- run: |
$env:Path += ";C:\Program Files\Rust\bin"
Expand Down
Loading