Skip to content

Commit

Permalink
circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaele-oplabs committed Jan 31, 2025
1 parent b3a8ef4 commit 357834e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ executors:
- image: cimg/rust:1.75.0 # CircleCI's Rust Docker image
working_directory: ~/project

commands:
install_rust_toolchain:
steps:
- run:
name: Install Rust nightly
command: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly
source "$HOME/.cargo/env"
jobs:
cargo-tests:
Expand All @@ -21,6 +29,7 @@ jobs:
# keys:
# - rust-cache-v1-{{ checksum "Cargo.lock" }}
# - rust-cache-v1-
- install_rust_toolchain
- checkout
- run:
name: Generate testdata
Expand Down

0 comments on commit 357834e

Please sign in to comment.