aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-08-18 11:11:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-08-18 11:11:09 +0800
commit021e04b9a65e43071c18dc4dbea4f4ac27318e20 (patch)
treea449604b9f235d376d80ad39afb4b67dde783a58
parentb1102be2682feb2d2182ead0fcc7ce12f8d0c865 (diff)
chore(ci): remove obsolete run scripts
-rw-r--r--.run/src/bin/build-all.ps18
-rwxr-xr-x.run/src/bin/build-all.sh6
-rw-r--r--.run/src/bin/clippy.ps18
-rwxr-xr-x.run/src/bin/clippy.sh6
-rw-r--r--.run/src/bin/doc-nightly.ps16
-rwxr-xr-x.run/src/bin/doc-nightly.sh8
-rw-r--r--.run/src/bin/doc.ps15
-rwxr-xr-x.run/src/bin/doc.sh7
-rw-r--r--.run/src/bin/test-all.ps18
-rw-r--r--.run/src/bin/test-all.sh6
10 files changed, 0 insertions, 68 deletions
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