Skip to content

Commit 4ac994e

Browse files
committed
move CI crates to ci/
1 parent 3733a7f commit 4ac994e

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
command: build
5050
# This test crate is intentionally separate, because we need
5151
# independent features for no-std. (rust-lang/cargo#2589)
52-
args: --target thumbv6m-none-eabi --manifest-path check/Cargo.toml
52+
args: --target thumbv6m-none-eabi --manifest-path ci/check/Cargo.toml
5353

5454
fmt:
5555
name: Format

check/Cargo.toml renamed to ci/check/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Josh Stone <cuviper@gmail.com>"]
55
edition = "2018"
66

77
[dependencies.num-derive]
8-
path = ".."
8+
path = "../.."
99

1010
[dependencies.num-traits]
1111
version = "0.2"
File renamed without changes.

import/Cargo.toml renamed to ci/import/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2018"
66
publish = false
77

88
[dependencies]
9-
num-derive = { path = "../" }
9+
num-derive = { path = "../.." }
1010
num = { version = "0.3", default-features = false }
File renamed without changes.

ci/test_full.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ done
4646
cargo build --features="${FEATURES[*]}"
4747
cargo test --features="${FEATURES[*]}"
4848

49-
cd check; cargo test --verbose check; cd ..
50-
cd import; cargo test --verbose import; cd ..
49+
# these CI crates keep tighter control over dependencies
50+
cargo check --verbose --manifest-path ci/check/Cargo.toml
51+
cargo check --verbose --manifest-path ci/import/Cargo.toml

import/src/main.rs

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)