From 021e04b9a65e43071c18dc4dbea4f4ac27318e20 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 18 Aug 2026 11:11:09 +0800 Subject: chore(ci): remove obsolete run scripts --- .run/src/bin/build-all.ps1 | 8 -------- .run/src/bin/build-all.sh | 6 ------ .run/src/bin/clippy.ps1 | 8 -------- .run/src/bin/clippy.sh | 6 ------ .run/src/bin/doc-nightly.ps1 | 6 ------ .run/src/bin/doc-nightly.sh | 8 -------- .run/src/bin/doc.ps1 | 5 ----- .run/src/bin/doc.sh | 7 ------- .run/src/bin/test-all.ps1 | 8 -------- .run/src/bin/test-all.sh | 6 ------ 10 files changed, 68 deletions(-) delete mode 100644 .run/src/bin/build-all.ps1 delete mode 100755 .run/src/bin/build-all.sh delete mode 100644 .run/src/bin/clippy.ps1 delete mode 100755 .run/src/bin/clippy.sh delete mode 100644 .run/src/bin/doc-nightly.ps1 delete mode 100755 .run/src/bin/doc-nightly.sh delete mode 100644 .run/src/bin/doc.ps1 delete mode 100755 .run/src/bin/doc.sh delete mode 100644 .run/src/bin/test-all.ps1 delete mode 100644 .run/src/bin/test-all.sh diff --git a/.run/src/bin/build-all.ps1 b/.run/src/bin/build-all.ps1 deleted file mode 100644 index 4f35ed8..0000000 --- a/.run/src/bin/build-all.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -$starting_dir = Get-Location -Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object { - $project_dir = $_.DirectoryName - Push-Location $project_dir - cargo build - Pop-Location -} -Set-Location $starting_dir diff --git a/.run/src/bin/build-all.sh b/.run/src/bin/build-all.sh deleted file mode 100755 index 2036b41..0000000 --- a/.run/src/bin/build-all.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -find . -name "Cargo.toml" -type f | while read -r cargo_file; do - project_dir=$(dirname "$cargo_file") - (cd "$project_dir" && cargo build) -done diff --git a/.run/src/bin/clippy.ps1 b/.run/src/bin/clippy.ps1 deleted file mode 100644 index 1858873..0000000 --- a/.run/src/bin/clippy.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -$starting_dir = Get-Location -Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object { - $project_dir = $_.DirectoryName - Push-Location $project_dir - cargo clippy --quiet - Pop-Location -} -Set-Location $starting_dir diff --git a/.run/src/bin/clippy.sh b/.run/src/bin/clippy.sh deleted file mode 100755 index b393545..0000000 --- a/.run/src/bin/clippy.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -find . -name "Cargo.toml" -type f | while read -r cargo_file; do - project_dir=$(dirname "$cargo_file") - (cd "$project_dir" && cargo clippy --quiet) -done diff --git a/.run/src/bin/doc-nightly.ps1 b/.run/src/bin/doc-nightly.ps1 deleted file mode 100644 index a81f7e6..0000000 --- a/.run/src/bin/doc-nightly.ps1 +++ /dev/null @@ -1,6 +0,0 @@ -cargo +nightly rustdoc ` - --manifest-path mingling/Cargo.toml ` - --features docs_rs,core,macros,structural_renderer,repl,comp,picker,clap,extras ` - --open ` - -- ` - --cfg docsrs diff --git a/.run/src/bin/doc-nightly.sh b/.run/src/bin/doc-nightly.sh deleted file mode 100755 index ccf3aa0..0000000 --- a/.run/src/bin/doc-nightly.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -cargo rustdoc \ - --manifest-path mingling/Cargo.toml \ - --features docs_rs,core,macros,structural_renderer,repl,comp,picker,clap,extras \ - --open \ - -- \ - --cfg docsrs diff --git a/.run/src/bin/doc.ps1 b/.run/src/bin/doc.ps1 deleted file mode 100644 index 64150b1..0000000 --- a/.run/src/bin/doc.ps1 +++ /dev/null @@ -1,5 +0,0 @@ -$env:RUSTDOCFLAGS="--html-in-header mingling/arborium-header.html"; cargo doc ` - --manifest-path mingling/Cargo.toml ` - --no-deps ` - --features docs_rs,core,macros,structural_renderer,repl,comp,picker,clap,extras,pathf ` - --open diff --git a/.run/src/bin/doc.sh b/.run/src/bin/doc.sh deleted file mode 100755 index 79c74e7..0000000 --- a/.run/src/bin/doc.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -RUSTDOCFLAGS="--html-in-header mingling/arborium-header.html" cargo doc \ - --manifest-path mingling/Cargo.toml \ - --no-deps \ - --features docs_rs,core,macros,structural_renderer,repl,comp,picker,clap,extras,pathf \ - --open diff --git a/.run/src/bin/test-all.ps1 b/.run/src/bin/test-all.ps1 deleted file mode 100644 index 231698a..0000000 --- a/.run/src/bin/test-all.ps1 +++ /dev/null @@ -1,8 +0,0 @@ -$starting_dir = Get-Location -Get-ChildItem -Recurse -Filter "Cargo.toml" | ForEach-Object { - $project_dir = $_.DirectoryName - Push-Location $project_dir - cargo test - Pop-Location -} -Set-Location $starting_dir diff --git a/.run/src/bin/test-all.sh b/.run/src/bin/test-all.sh deleted file mode 100644 index b387463..0000000 --- a/.run/src/bin/test-all.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -find . -name "Cargo.toml" -type f | while read -r cargo_file; do - project_dir=$(dirname "$cargo_file") - (cd "$project_dir" && cargo test) -done -- cgit