Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External Storage #40

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all 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
40 changes: 20 additions & 20 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ workflows:
- lint:
matrix:
parameters:
rust-version: ["1.70.0", "1.76.0"]
rust-version: ["1.72.0", "1.76.0"]
- coverage
nightly:
triggers:
Expand All @@ -35,7 +35,7 @@ workflows:
jobs:
package_cw_utils_build_and_test:
docker:
- image: rust:1.70.0
- image: rust:1.72.0
working_directory: ~/project/packages/cw-utils
steps:
- checkout
Expand All @@ -50,8 +50,8 @@ jobs:
command: cargo update
- restore_cache:
keys:
- v3-cw-utils-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw-utils-rust:1.70.0-
- v3-cw-utils-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw-utils-rust:1.72.0-
- run:
name: Build library for native target
command: cargo build --locked
Expand All @@ -68,7 +68,7 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: v3-cw-utils-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
key: v3-cw-utils-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}

package_cw_utils_build_minimal:
docker:
Expand All @@ -84,8 +84,8 @@ jobs:
command: rm Cargo.lock
- restore_cache:
keys:
- v3-cw-utils-rust:1.70.0-minimal-{{ checksum "Cargo.toml" }}
- v3-cw-utils-rust:1.70.0-minimal-
- v3-cw-utils-rust:1.72.0-minimal-{{ checksum "Cargo.toml" }}
- v3-cw-utils-rust:1.72.0-minimal-
- run:
name: Build library for native target
command: cargo build -Zminimal-versions --all-features
Expand All @@ -96,11 +96,11 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: v3-cw-utils-rust:1.70.0-minimal-{{ checksum "Cargo.toml" }}
key: v3-cw-utils-rust:1.72.0-minimal-{{ checksum "Cargo.toml" }}

package_cw_utils_build_maximal:
docker:
- image: rust:1.70.0
- image: rust:1.72.0
working_directory: ~/project/packages/cw-utils
steps:
- checkout
Expand All @@ -112,8 +112,8 @@ jobs:
command: cargo update
- restore_cache:
keys:
- v3-cw-utils-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw-utils-rust:1.70.0-
- v3-cw-utils-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw-utils-rust:1.72.0-
- run:
name: Build library for native target
command: cargo build --locked --all-features
Expand All @@ -124,7 +124,7 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: v3-cw-utils-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
key: v3-cw-utils-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}

lint:
parameters:
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:

package_cw2:
docker:
- image: rust:1.70.0
- image: rust:1.72.0
working_directory: ~/project/packages/cw2
steps:
- checkout:
Expand All @@ -191,8 +191,8 @@ jobs:
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
- restore_cache:
keys:
- v3-cw2-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw2-rust:1.70.0-
- v3-cw2-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}
- v3-cw2-rust:1.72.0-
- run:
name: Build library for native target
command: cargo build --locked
Expand All @@ -204,11 +204,11 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: v3-cw2-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
key: v3-cw2-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}

package_controllers:
docker:
- image: rust:1.70.0
- image: rust:1.72.0
working_directory: ~/project/packages/controllers
steps:
- checkout:
Expand All @@ -218,8 +218,8 @@ jobs:
command: rustc --version; cargo --version; rustup --version; rustup target list --installed
- restore_cache:
keys:
- v3-controllers-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
- v3-controllers-rust:1.70.0-
- v3-controllers-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}
- v3-controllers-rust:1.72.0-
- run:
name: Build library for native target
command: cargo build --locked
Expand All @@ -230,4 +230,4 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: v3-controllers-rust:1.70.0-{{ checksum "~/project/Cargo.lock" }}
key: v3-controllers-rust:1.72.0-{{ checksum "~/project/Cargo.lock" }}
Loading