Skip to content

Commit fb8fa13

Browse files
committed
remove remaining mentions of cargo-smart-release
1 parent 015f12e commit fb8fa13

File tree

4 files changed

+2
-16
lines changed

4 files changed

+2
-16
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ jobs:
133133
run: vcpkg install zlib:x64-windows-static-md
134134
- name: "Installation from crates.io: gitoxide"
135135
run: cargo +${{ matrix.rust }} install --target ${{ matrix.target }} --target-dir install-artifacts --debug --force gitoxide
136-
- name: "Installation from crates.io: cargo-smart-release"
137-
run: cargo +${{ matrix.rust }} install --target ${{ matrix.target }} --target-dir install-artifacts --debug --force cargo-smart-release
138136

139137
lint:
140138
runs-on: ubuntu-latest

Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,6 @@ members = [
290290
"gix-config/tests",
291291
"gix-traverse/tests",
292292
]
293-
exclude = ["cargo-smart-release/tests/fixtures/tri-depth-workspace/a",
294-
"cargo-smart-release/tests/fixtures/tri-depth-workspace/b",
295-
"cargo-smart-release/tests/fixtures/tri-depth-workspace/c"]
296293

297294
[package.metadata.docs.rs]
298295
features = ["document-features", "max"]

etc/check-package-size.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ function indent () {
1515
}
1616

1717
echo "in root: gitoxide CLI"
18-
(enter cargo-smart-release && indent cargo diet -n --package-size-limit 110KB)
1918
(enter gix-actor && indent cargo diet -n --package-size-limit 5KB)
2019
(enter gix-archive && indent cargo diet -n --package-size-limit 10KB)
2120
(enter gix-worktree-stream && indent cargo diet -n --package-size-limit 40KB)

justfile

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ alias t := test
99
alias c := check
1010

1111
# run all tests, clippy, including journey tests, try building docs
12-
test: clippy check doc unit-tests journey-tests-pure journey-tests-small journey-tests-async journey-tests journey-tests-smart-release
12+
test: clippy check doc unit-tests journey-tests-pure journey-tests-small journey-tests-async journey-tests
1313

1414
# run all tests, without clippy, including journey tests, try building docs (and clear target on CI)
15-
ci-test: check doc unit-tests clear-target journey-tests-pure journey-tests-small journey-tests-async journey-tests journey-tests-smart-release
15+
ci-test: check doc unit-tests clear-target journey-tests-pure journey-tests-small journey-tests-async journey-tests
1616

1717
clear-target:
1818
cargo clean
@@ -110,7 +110,6 @@ check:
110110
cargo check -p gix --no-default-features --features progress-tree
111111
cargo check -p gix --no-default-features
112112
cargo check -p gix-odb --features serde
113-
cargo check -p cargo-smart-release --all
114113
cargo check --no-default-features --features max-control
115114

116115
# Run cargo doc on all crates
@@ -187,13 +186,6 @@ journey-tests-async:
187186
cargo build -p gix-testtools
188187
./tests/journey.sh {{ ein }} {{ gix }} {{ jtt }} async
189188

190-
cargo-smart-release := `cargo metadata --manifest-path ./cargo-smart-release/Cargo.toml --format-version 1 | jq -r .target_directory` / "debug/cargo-smart-release"
191-
192-
# run journey tests (cargo-smart-release)
193-
journey-tests-smart-release:
194-
cd cargo-smart-release && cargo build --bin cargo-smart-release
195-
cd cargo-smart-release && ./tests/journey.sh {{ cargo-smart-release }}
196-
197189
# Run cargo-diet on all crates to see that they are still in bound
198190
check-size:
199191
./etc/check-package-size.sh

0 commit comments

Comments
 (0)