Skip to content

Commit

Permalink
Update Rust image in Dronefile (#51)
Browse files Browse the repository at this point in the history
* Update Rust image in Dronefile

* Pin version of `cargo-release` in publishing script

Co-authored-by: William Venner <14863743+WilliamVenner@users.noreply.github.com>
  • Loading branch information
WilliamVenner and WilliamVenner authored Nov 16, 2022
1 parent 66f8f35 commit abdf829
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ steps:
PLUGIN_DEPTH: 5

- name: cargo-deps
image: rust:1.61
image: rust:1.64
commands:
- cargo fetch
environment:
Expand All @@ -25,7 +25,7 @@ steps:
- git-clone

- name: cargo-format
image: rust:1.61
image: rust:1.64
commands:
- cargo fmt --all -- --check
environment:
Expand All @@ -34,7 +34,7 @@ steps:
- cargo-deps

- name: cargo-clippy-ci
image: rust:1.61
image: rust:1.64
commands:
- cargo clippy -- -D warnings &&
cargo clippy --features toggle -- -D warnings &&
Expand All @@ -47,7 +47,7 @@ steps:
- cargo-format

- name: cargo-test
image: rust:1.61
image: rust:1.64
commands:
- cargo test --all && cargo test --all --features toggle
environment:
Expand Down Expand Up @@ -79,7 +79,7 @@ steps:
PLUGIN_DEPTH: 5

- name: build-production
image: rust:1.61
image: rust:1.64
commands:
- ./deploy/build production
environment:
Expand Down
2 changes: 1 addition & 1 deletion deploy/build
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ apt-get install jq -y

git checkout .

cargo install cargo-release
cargo install cargo-release --version "0.23.*"
cargo login "$CARGO_AUTH_KEY"
cargo release publish --execute --no-confirm --workspace --all-features

0 comments on commit abdf829

Please sign in to comment.