mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-26 17:10:48 +00:00
Compare commits
41 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a3bd4a6f9c | ||
|
|
a124e0a223 | ||
|
|
77262c00ec | ||
|
|
ae97ff9daf | ||
|
|
4226e24080 | ||
|
|
e03236526a | ||
|
|
7cd5fd4051 | ||
|
|
bfd7aadad6 | ||
|
|
011a3fc5ce | ||
|
|
eb454bad93 | ||
|
|
d041e4befe | ||
|
|
1f8ff2cc46 | ||
|
|
6a4015d722 | ||
|
|
817fcd18a5 | ||
|
|
dee334f610 | ||
|
|
38c7691f46 | ||
|
|
2dbeb927f5 | ||
|
|
7852930e42 | ||
|
|
46724b7a3e | ||
|
|
55451daf94 | ||
|
|
964cdcf277 | ||
|
|
dd548c6593 | ||
|
|
de33aea2e5 | ||
|
|
69a1d2b891 | ||
|
|
c57ce37e13 | ||
|
|
7afac3d3be | ||
|
|
c036d35ea6 | ||
|
|
54b836426b | ||
|
|
9fff09cbe0 | ||
|
|
13b3c51a32 | ||
|
|
3ccbe21af2 | ||
|
|
ad0904967b | ||
|
|
3fc69e7246 | ||
|
|
f45576468f | ||
|
|
7b30dcdca1 | ||
|
|
f188d3633d | ||
|
|
83080f843d | ||
|
|
7bcfa52bea | ||
|
|
f8ea9d2f10 | ||
|
|
dfe4a92949 | ||
|
|
85f2be18a0 |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -62,7 +62,7 @@ jobs:
|
|||||||
- os: ubuntu-22.04
|
- os: ubuntu-22.04
|
||||||
- os: ubuntu-22.04-arm
|
- os: ubuntu-22.04-arm
|
||||||
- os: ubuntu-24.04
|
- os: ubuntu-24.04
|
||||||
# - os: ubuntu-24.04-arm # TODO: re-enable when https://github.com/rust-lang/rust/issues/135867 solved
|
- os: ubuntu-24.04-arm
|
||||||
- os: ubuntu-22.04
|
- os: ubuntu-22.04
|
||||||
tool: major.minor.patch
|
tool: major.minor.patch
|
||||||
- os: ubuntu-22.04
|
- os: ubuntu-22.04
|
||||||
|
|||||||
2
.github/workflows/manifest.yml
vendored
2
.github/workflows/manifest.yml
vendored
@@ -53,7 +53,7 @@ jobs:
|
|||||||
id: diff
|
id: diff
|
||||||
run: tools/ci/manifest.sh
|
run: tools/ci/manifest.sh
|
||||||
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main')
|
if: github.repository_owner == 'taiki-e' && (github.event_name == 'schedule' || github.event_name == 'push' && github.ref == 'refs/heads/main')
|
||||||
- run: git add -N . && git diff --exit-code
|
- run: git add -N . && git -c color.ui=always diff --exit-code
|
||||||
- id: create-pull-request
|
- id: create-pull-request
|
||||||
uses: peter-evans/create-pull-request@v7
|
uses: peter-evans/create-pull-request@v7
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ error_on_line_overflow = true
|
|||||||
# Override the default formatting style.
|
# Override the default formatting style.
|
||||||
# See https://internals.rust-lang.org/t/running-rustfmt-on-rust-lang-rust-and-other-rust-lang-repositories/8732/81.
|
# See https://internals.rust-lang.org/t/running-rustfmt-on-rust-lang-rust-and-other-rust-lang-repositories/8732/81.
|
||||||
use_small_heuristics = "Max"
|
use_small_heuristics = "Max"
|
||||||
# This is the default of 2024 edition https://github.com/rust-lang/rust/pull/114764.
|
|
||||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3370)
|
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3370)
|
||||||
overflow_delimited_expr = true
|
overflow_delimited_expr = true
|
||||||
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/4991).
|
# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/4991).
|
||||||
@@ -27,6 +26,7 @@ use_try_shorthand = true
|
|||||||
# Set the default settings again to always apply the proper formatting without
|
# Set the default settings again to always apply the proper formatting without
|
||||||
# being affected by the editor settings.
|
# being affected by the editor settings.
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
style_edition = "2024"
|
||||||
hard_tabs = false
|
hard_tabs = false
|
||||||
newline_style = "Unix"
|
newline_style = "Unix"
|
||||||
tab_spaces = 4
|
tab_spaces = 4
|
||||||
|
|||||||
86
CHANGELOG.md
86
CHANGELOG.md
@@ -10,6 +10,76 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [2.49.2] - 2025-02-25
|
||||||
|
|
||||||
|
- Update `sccache@latest` to 0.10.0.
|
||||||
|
|
||||||
|
- Update `cargo-machete@latest` to 0.8.0.
|
||||||
|
|
||||||
|
## [2.49.1] - 2025-02-24
|
||||||
|
|
||||||
|
- Update `cargo-deny@latest` to 0.18.0.
|
||||||
|
|
||||||
|
## [2.49.0] - 2025-02-23
|
||||||
|
|
||||||
|
- Allow installing pre-release versions using binstall. ([#868](https://github.com/taiki-e/install-action/pull/868))
|
||||||
|
|
||||||
|
## [2.48.22] - 2025-02-23
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.11.1.
|
||||||
|
|
||||||
|
- Update `release-plz@latest` to 0.3.122.
|
||||||
|
|
||||||
|
## [2.48.21] - 2025-02-22
|
||||||
|
|
||||||
|
- Update `wasmtime@latest` to 30.0.1.
|
||||||
|
|
||||||
|
- Update `syft@latest` to 1.20.0.
|
||||||
|
|
||||||
|
## [2.48.20] - 2025-02-21
|
||||||
|
|
||||||
|
- Update `cargo-udeps@latest` to 0.1.55.
|
||||||
|
|
||||||
|
## [2.48.19] - 2025-02-20
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.29.9.
|
||||||
|
|
||||||
|
## [2.48.18] - 2025-02-20
|
||||||
|
|
||||||
|
- Update `cargo-deny@latest` to 0.17.0.
|
||||||
|
|
||||||
|
## [2.48.17] - 2025-02-20
|
||||||
|
|
||||||
|
- Update `wasmtime@latest` to 30.0.0.
|
||||||
|
|
||||||
|
## [2.48.16] - 2025-02-19
|
||||||
|
|
||||||
|
- Update `typos@latest` to 1.29.8.
|
||||||
|
|
||||||
|
## [2.48.15] - 2025-02-18
|
||||||
|
|
||||||
|
- Update `xh@latest` to 0.24.0.
|
||||||
|
|
||||||
|
## [2.48.14] - 2025-02-18
|
||||||
|
|
||||||
|
- Update `mdbook@latest` to 0.4.45.
|
||||||
|
|
||||||
|
## [2.48.13] - 2025-02-16
|
||||||
|
|
||||||
|
- Support `zola` on AArch64 Linux.
|
||||||
|
|
||||||
|
- Update `zola@latest` to 0.20.0.
|
||||||
|
|
||||||
|
- Update `cargo-binstall@latest` to 1.11.0.
|
||||||
|
|
||||||
|
## [2.48.12] - 2025-02-14
|
||||||
|
|
||||||
|
- Update `rclone@latest` to 1.69.1.
|
||||||
|
|
||||||
|
- Update `cargo-tarpaulin@latest` to 0.32.0.
|
||||||
|
|
||||||
|
- Update `cargo-nextest@latest` to 0.9.91.
|
||||||
|
|
||||||
## [2.48.11] - 2025-02-14
|
## [2.48.11] - 2025-02-14
|
||||||
|
|
||||||
- Update `typos@latest` to 1.29.7.
|
- Update `typos@latest` to 1.29.7.
|
||||||
@@ -3498,7 +3568,21 @@ Note: This release is considered a breaking change because installing on version
|
|||||||
|
|
||||||
Initial release
|
Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.48.11...HEAD
|
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.49.2...HEAD
|
||||||
|
[2.49.2]: https://github.com/taiki-e/install-action/compare/v2.49.1...v2.49.2
|
||||||
|
[2.49.1]: https://github.com/taiki-e/install-action/compare/v2.49.0...v2.49.1
|
||||||
|
[2.49.0]: https://github.com/taiki-e/install-action/compare/v2.48.22...v2.49.0
|
||||||
|
[2.48.22]: https://github.com/taiki-e/install-action/compare/v2.48.21...v2.48.22
|
||||||
|
[2.48.21]: https://github.com/taiki-e/install-action/compare/v2.48.20...v2.48.21
|
||||||
|
[2.48.20]: https://github.com/taiki-e/install-action/compare/v2.48.19...v2.48.20
|
||||||
|
[2.48.19]: https://github.com/taiki-e/install-action/compare/v2.48.18...v2.48.19
|
||||||
|
[2.48.18]: https://github.com/taiki-e/install-action/compare/v2.48.17...v2.48.18
|
||||||
|
[2.48.17]: https://github.com/taiki-e/install-action/compare/v2.48.16...v2.48.17
|
||||||
|
[2.48.16]: https://github.com/taiki-e/install-action/compare/v2.48.15...v2.48.16
|
||||||
|
[2.48.15]: https://github.com/taiki-e/install-action/compare/v2.48.14...v2.48.15
|
||||||
|
[2.48.14]: https://github.com/taiki-e/install-action/compare/v2.48.13...v2.48.14
|
||||||
|
[2.48.13]: https://github.com/taiki-e/install-action/compare/v2.48.12...v2.48.13
|
||||||
|
[2.48.12]: https://github.com/taiki-e/install-action/compare/v2.48.11...v2.48.12
|
||||||
[2.48.11]: https://github.com/taiki-e/install-action/compare/v2.48.10...v2.48.11
|
[2.48.11]: https://github.com/taiki-e/install-action/compare/v2.48.10...v2.48.11
|
||||||
[2.48.10]: https://github.com/taiki-e/install-action/compare/v2.48.9...v2.48.10
|
[2.48.10]: https://github.com/taiki-e/install-action/compare/v2.48.9...v2.48.10
|
||||||
[2.48.9]: https://github.com/taiki-e/install-action/compare/v2.48.8...v2.48.9
|
[2.48.9]: https://github.com/taiki-e/install-action/compare/v2.48.8...v2.48.9
|
||||||
|
|||||||
4
main.sh
4
main.sh
@@ -639,11 +639,11 @@ for tool in "${tools[@]}"; do
|
|||||||
if [[ "${tool}" == *"@"* ]]; then
|
if [[ "${tool}" == *"@"* ]]; then
|
||||||
version="${tool#*@}"
|
version="${tool#*@}"
|
||||||
tool="${tool%@*}"
|
tool="${tool%@*}"
|
||||||
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)$|^latest$ ]]; then
|
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||||
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
if [[ ! "${version}" =~ ^([1-9][0-9]*(\.[0-9]+(\.[0-9]+)?)?|0\.[1-9][0-9]*(\.[0-9]+)?|^0\.0\.[0-9]+)(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$|^latest$ ]]; then
|
||||||
bail "install-action does not support semver operators: '${version}'"
|
bail "install-action does not support semver operators: '${version}'"
|
||||||
fi
|
fi
|
||||||
bail "install-action v2 does not support semver pre-release and build-metadata: '${version}'; if you need these supports again, please submit an issue at <https://github.com/taiki-e/install-action>"
|
bail "install-action v2 does not support semver build-metadata: '${version}'; if you need these supports again, please submit an issue at <https://github.com/taiki-e/install-action>"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
version=latest
|
version=latest
|
||||||
|
|||||||
28
manifests/cargo-binstall.json
generated
28
manifests/cargo-binstall.json
generated
@@ -22,32 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
"license_markdown": "[GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.10.23"
|
"version": "1.11.1"
|
||||||
},
|
},
|
||||||
"1.10.23": {
|
"1.11.1": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
"etag": "0x8DD4AFD896913A3",
|
"etag": "0x8DD53AD432C0E1E",
|
||||||
"checksum": "34de8f3ada6cb3e7ba6b928c89e0365b2d915bf55868f89adb2dc6ef54dc7a57"
|
"checksum": "e4ee181b2d8fc814b340f5da849dd67acfc985b18c92bcd654c9d223d205e4d5"
|
||||||
},
|
},
|
||||||
"x86_64_macos": {
|
"x86_64_macos": {
|
||||||
"etag": "0x8DD4AFD5A60CA1D",
|
"etag": "0x8DD53AD12F83C0F",
|
||||||
"checksum": "2bf066806ab55af01111f36429f17417a0edf4b378b7da0bf20630e3513452ae"
|
"checksum": "fca395de3047f7868c3b57d7563a8342b2b446b0c6839509527fff56e2156068"
|
||||||
},
|
},
|
||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"etag": "0x8DD4AFE9EE1AC80",
|
"etag": "0x8DD53AE25C0C75B",
|
||||||
"checksum": "e3abbe9a4607ec25b13bcb753a6107b8c4c3c96182613077d8e31e98c1c5d05f"
|
"checksum": "b092d9f1dea240fb7269e25bd097575fd8bd7b0acd9b44cf5319e5a52adb9952"
|
||||||
},
|
},
|
||||||
"aarch64_linux_musl": {
|
"aarch64_linux_musl": {
|
||||||
"etag": "0x8DD4AFD39474706",
|
"etag": "0x8DD53ACE9F477BA",
|
||||||
"checksum": "95e7e99e421af46ae3553f3d39ef7a8e30b5a9b665766ff1a377b98c5f779ca2"
|
"checksum": "096f2d7afb87856f58a8c95a5a99130b60ad2763f38378c62b1ffa3ec8e93c1f"
|
||||||
},
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"etag": "0x8DD4AFDA9863BD9",
|
"etag": "0x8DD53AD22027CC8",
|
||||||
"checksum": "73abce9648edad70f4c5d22c30a2f5bb8ebedd012b6ac874608003153fd815c2"
|
"checksum": "2837ffc3ad798eec1629638ed43ca85a52abf9d0db5ab38d498d803fd65c38c3"
|
||||||
},
|
},
|
||||||
"aarch64_windows": {
|
"aarch64_windows": {
|
||||||
"etag": "0x8DD4AFE236CDF4D",
|
"etag": "0x8DD53ADFC1A99F6",
|
||||||
"checksum": "e22b0a697ebf017cfb05302bc02c59f79536cd9f63e7dd385a4da3da3fbbdc76"
|
"checksum": "d675ea21614f99482569f4bae2a24cd312b98755c8f3708766baa7cb502b640b"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
52
manifests/cargo-deny.json
generated
52
manifests/cargo-deny.json
generated
@@ -24,7 +24,57 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.16.4"
|
"version": "0.18.0"
|
||||||
|
},
|
||||||
|
"0.18": {
|
||||||
|
"version": "0.18.0"
|
||||||
|
},
|
||||||
|
"0.18.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD54AD3CA8695C",
|
||||||
|
"checksum": "9f0c7b5b84242db9b1d4c47155c4cecc006a9dd657aa730a186939379a8c2200"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD54AD2A210547",
|
||||||
|
"checksum": "b131c2871d982aa1e322a65c09c5c2971dffb24689921df287d73f423c888991"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD54ADAE24EDA7",
|
||||||
|
"checksum": "5f1d1ad125f2e626b2c393d71e2ab36b4f468c47711547832c1f4da19f892ca0"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD54AD5819A2C2",
|
||||||
|
"checksum": "1a6f16dbaf308a64dfa1fb310a717a268f2b38bfd1bc32d5ce2c1f8b72adeec2"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD54AD34C97FE5",
|
||||||
|
"checksum": "e1cb27af1d1020a19dd3c48019071b0c21b2641b8fbc49a2806223f6cb47e2ff"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.17": {
|
||||||
|
"version": "0.17.0"
|
||||||
|
},
|
||||||
|
"0.17.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD518E866BDAA6",
|
||||||
|
"checksum": "eafaffd87b2c7e97a644ed6eeac267b2af471a5bcf9cff7435852661caadf353"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD518E713313D0",
|
||||||
|
"checksum": "fdd12d35aee874abcebe1ce9aff10fb224219326895edd5d5eb23e014366b301"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD518F2975306A",
|
||||||
|
"checksum": "95d72fd9a079e83e93ddc345227fd9dfb4d4133275f5d0cb0f7df322eac6d3b7"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD518E96C67017",
|
||||||
|
"checksum": "147422f4914e0c322ac8f2d0676afddfcd40c91a226d69b5b799af8c6978cf21"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD518E9D5EDDB7",
|
||||||
|
"checksum": "8f59efe8d4785ba4febe0e8b079952a03d435f50345533c3dd4ef2b107ba18e0"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.16": {
|
"0.16": {
|
||||||
"version": "0.16.4"
|
"version": "0.16.4"
|
||||||
|
|||||||
31
manifests/cargo-machete.json
generated
31
manifests/cargo-machete.json
generated
@@ -3,7 +3,36 @@
|
|||||||
"template": null,
|
"template": null,
|
||||||
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
"license_markdown": "[MIT](https://github.com/bnjbvr/cargo-machete/blob/main/LICENSE.md)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.7.0"
|
"version": "0.8.0"
|
||||||
|
},
|
||||||
|
"0.8": {
|
||||||
|
"version": "0.8.0"
|
||||||
|
},
|
||||||
|
"0.8.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.8.0/cargo-machete-v0.8.0-x86_64-unknown-linux-musl.tar.gz",
|
||||||
|
"etag": "0x8DD550F01B09F95",
|
||||||
|
"checksum": "020f6608f9be1562d1fb601e5808e541ccb8806e7e4dfde27d48bc22254a002c",
|
||||||
|
"bin": "cargo-machete-v0.8.0-x86_64-unknown-linux-musl/cargo-machete"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.8.0/cargo-machete-v0.8.0-x86_64-apple-darwin.tar.gz",
|
||||||
|
"etag": "0x8DD550F074262C8",
|
||||||
|
"checksum": "f1304100fef4012e6b3f4b74fa7d6a71ff0de3cc3d8a3e67773a434f2854a0d8",
|
||||||
|
"bin": "cargo-machete-v0.8.0-x86_64-apple-darwin/cargo-machete"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.8.0/cargo-machete-v0.8.0-x86_64-pc-windows-msvc.tar.gz",
|
||||||
|
"etag": "0x8DD550F250F5178",
|
||||||
|
"checksum": "19f15db89529f0e01fa0afb56d1d3c3d54bfb709086479bd190a0f4a3e2efd8c",
|
||||||
|
"bin": "cargo-machete-v0.8.0-x86_64-pc-windows-msvc/cargo-machete.exe"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"url": "https://github.com/bnjbvr/cargo-machete/releases/download/v0.8.0/cargo-machete-v0.8.0-aarch64-apple-darwin.tar.gz",
|
||||||
|
"etag": "0x8DD550F00F685B8",
|
||||||
|
"checksum": "9047eacf791e23ff2b3b7b3489a9537c34df02dbdbbfe46541720e9ed3308adf",
|
||||||
|
"bin": "cargo-machete-v0.8.0-aarch64-apple-darwin/cargo-machete"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.7": {
|
"0.7": {
|
||||||
"version": "0.7.0"
|
"version": "0.7.0"
|
||||||
|
|||||||
27
manifests/cargo-nextest.json
generated
27
manifests/cargo-nextest.json
generated
@@ -19,10 +19,33 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
"license_markdown": "[Apache-2.0](https://github.com/nextest-rs/nextest/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/nextest-rs/nextest/blob/main/LICENSE-MIT)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.9.90"
|
"version": "0.9.91"
|
||||||
},
|
},
|
||||||
"0.9": {
|
"0.9": {
|
||||||
"version": "0.9.90"
|
"version": "0.9.91"
|
||||||
|
},
|
||||||
|
"0.9.91": {
|
||||||
|
"previous_stable_version": "0.9.90",
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD4C9803365D77",
|
||||||
|
"checksum": "c28e4d7380662860eff0bc407d9830f59c2ac0a4b2d1c73d0d9c671139fa2eac"
|
||||||
|
},
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD4C9831FCF8ED",
|
||||||
|
"checksum": "e5e319f562b250ef2d806201a0b023aa1ab3e9880f11c4176d6fbf6e366d3c50"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4C98297BA941",
|
||||||
|
"checksum": "104ba3670bb3a277fdfd2e94f4eb09909165ef114f2808e887332d859ba1ca92"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4C98D37ED80B",
|
||||||
|
"checksum": "54d18079329ce85af4dd77f15662eb97eab08a3f36b36290363a919b48714e5e"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD4C9823CE6601",
|
||||||
|
"checksum": "9169fe49cd6cc432e233d75ba8a6f35e0797ee2ea8ca917703c99ff9cc08922a"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.9.90": {
|
"0.9.90": {
|
||||||
"previous_stable_version": "0.9.89",
|
"previous_stable_version": "0.9.89",
|
||||||
|
|||||||
27
manifests/cargo-tarpaulin.json
generated
27
manifests/cargo-tarpaulin.json
generated
@@ -19,7 +19,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-MIT) OR [Apache-2.0](https://github.com/xd009642/tarpaulin/blob/develop/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.31.5"
|
"version": "0.32.0"
|
||||||
|
},
|
||||||
|
"0.32": {
|
||||||
|
"version": "0.32.0"
|
||||||
|
},
|
||||||
|
"0.32.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD4CE72F1035B0",
|
||||||
|
"checksum": "a2ccc0792895182dd3df52e356401932fdefdfba17d4ae08831927337eaee337"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4CE6F0127B7F",
|
||||||
|
"checksum": "f595f9dee318c92866c762e43d97005ea30e76f7e1d5713e548300aea4d9a6b4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4CE776A3C8A3",
|
||||||
|
"checksum": "b9614633539be588314a0ec367a80365d00854dbe54a92bfa0981757cc88b1e5"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD4CE70205449F",
|
||||||
|
"checksum": "47236114c45b584f3aba663fecd454d15151785b51ac0e94631f4babfba5700d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD4CE6C913BEBF",
|
||||||
|
"checksum": "e46aabe1f6b0cbee10ed6f4ca3c5efbfc1eec961a6ec8a5a03933622d9804965"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.31": {
|
"0.31": {
|
||||||
"version": "0.31.5"
|
"version": "0.31.5"
|
||||||
|
|||||||
30
manifests/cargo-udeps.json
generated
30
manifests/cargo-udeps.json
generated
@@ -32,10 +32,36 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
"license_markdown": "[Apache-2.0 OR MIT](https://github.com/est31/cargo-udeps/blob/HEAD/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.1.54"
|
"version": "0.1.55"
|
||||||
},
|
},
|
||||||
"0.1": {
|
"0.1": {
|
||||||
"version": "0.1.54"
|
"version": "0.1.55"
|
||||||
|
},
|
||||||
|
"0.1.55": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD51FD656FD61C",
|
||||||
|
"checksum": "63b9dd69eef610477ead31a02a8262ec321a0e0272080c8db60d547233b2b55f"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD51FD3F1522FD",
|
||||||
|
"checksum": "bf5264e82de4db53dda851cfadf1fc84681e89f839703077b99238562da9b4be"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD51FDD1BF0962",
|
||||||
|
"checksum": "b6ac0a3aaa91609924e8f116bedf33f9892f25bea10437b73ac62b886baf0bdd"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD51FD66F8DA00",
|
||||||
|
"checksum": "a7b554ce1ad67e7e2c7679496c6bc4e57e35a36be50300670314fa3879405b2a"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD51FD5B3C7F18",
|
||||||
|
"checksum": "83727df0216eb08b4af11ab0f6f0699d06cfe807973b7cad83bc0a8a3b61ca1a"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD51FDD55FDE6B",
|
||||||
|
"checksum": "d0a2c26f11369c5855ffeaafaf6f299d179eb87afe3f2955fad893a7eff12dd3"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.1.54": {
|
"0.1.54": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
26
manifests/mdbook.json
generated
26
manifests/mdbook.json
generated
@@ -22,10 +22,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE)",
|
"license_markdown": "[MPL-2.0](https://github.com/rust-lang/mdBook/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.4.44"
|
"version": "0.4.45"
|
||||||
},
|
},
|
||||||
"0.4": {
|
"0.4": {
|
||||||
"version": "0.4.44"
|
"version": "0.4.45"
|
||||||
|
},
|
||||||
|
"0.4.45": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD4F82D422F91C",
|
||||||
|
"checksum": "1b7ff6c18d20f367d97978d82273b5a5b343ef8e2300118c7d7f13d780619609"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4F82D91DE44D",
|
||||||
|
"checksum": "085256959b89a90d476203720e3a9527f49509158f4afd218a532525711164d5"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4F832D86EFB3",
|
||||||
|
"checksum": "ee9025ac339ce151bfb3a9dbfc7bce55580e84b2bcbc02a45a8dcca57dbd8a10"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD4F82E1F83EAC",
|
||||||
|
"checksum": "8de76e084888803af4b2b710ac8e874107bbd5686f59323776defb8faa837818"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD4F82D89B8B35",
|
||||||
|
"checksum": "7e0368004c6e16c176f74498cc348717578c747759460b6082b62fb184e4f417"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.4.44": {
|
"0.4.44": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
32
manifests/rclone.json
generated
32
manifests/rclone.json
generated
@@ -28,13 +28,39 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
"license_markdown": "[MIT](https://github.com/rclone/rclone/blob/master/COPYING)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.69.0"
|
"version": "1.69.1"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.69.0"
|
"version": "1.69.1"
|
||||||
},
|
},
|
||||||
"1.69": {
|
"1.69": {
|
||||||
"version": "1.69.0"
|
"version": "1.69.1"
|
||||||
|
},
|
||||||
|
"1.69.1": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD4D194D7A0994",
|
||||||
|
"checksum": "231841f8d8029ae6cfca932b601b3b50d0e2c3c2cb9da3166293f1c3eae7d79c"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4D1A46FD41A1",
|
||||||
|
"checksum": "ebe1d5e13b0255605becfafbfa7c1809bc985272bcea0b342675c7e29c57629b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4D1A7D5C54F1",
|
||||||
|
"checksum": "0803f06d721e5399e48794538294099b195d51cc84b27bdb67e131096ad93ee4"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD4D199A88035B",
|
||||||
|
"checksum": "a03de8f700fcda7a1aef6b568f88d44218b698fb4e1637596c024d341bb24124"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD4D1A4F323719",
|
||||||
|
"checksum": "09b42295c30ba6b41a0d9c6741e4b5769de9ddecf5069f93c33f01bb46caa228"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD4D1A847A5706",
|
||||||
|
"checksum": "0f8a786c1eae54594bd067e05c1d22b3b346c5a8fb02392c446f63bab52be5aa"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.69.0": {
|
"1.69.0": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
56
manifests/release-plz.json
generated
56
manifests/release-plz.json
generated
@@ -22,10 +22,62 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/release-plz/release-plz/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/release-plz/release-plz/blob/main/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.3.120"
|
"version": "0.3.122"
|
||||||
},
|
},
|
||||||
"0.3": {
|
"0.3": {
|
||||||
"version": "0.3.120"
|
"version": "0.3.122"
|
||||||
|
},
|
||||||
|
"0.3.122": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD537551B92DC7",
|
||||||
|
"checksum": "c2d96cccacc03dcfa29d8300bd2acaab1a5e2cab25952d0e4b1d131918ad756a"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD5375D4F795CB",
|
||||||
|
"checksum": "eb08314c438a6a4af29dcb574a32ae140156c0f084e46273680660af6dafa082"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD537619A1C1AF",
|
||||||
|
"checksum": "74f4d5bc392c2f4cff7fd32d7241ccb8a5531cf60b180e435b22f4a5fe2716b9"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD53755C4828BF",
|
||||||
|
"checksum": "1ca3021665e381bda6d10b5e91e24773141e62a6559a2b09d59f558c47977ce8"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD5375C9894846",
|
||||||
|
"checksum": "2ad90e487ce5fa010b3349606e6c8d8be483fc9a09cf5853b77c205f0a1cdfb1"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD53761D58537A",
|
||||||
|
"checksum": "34feea582a64a179ea9a03824c65299132a557ef7db2c3edba18420195e99e04"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0.3.121": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD536DECC2FBC1",
|
||||||
|
"checksum": "8efd266e4254dc3caf75788645d99df96dfaa6e89ae0370846667f997389ac93"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD536E8F265D59",
|
||||||
|
"checksum": "90d89d597cdd4eaa72472ef7f7b07bd691bff98343b155bd3880d5eb5547c8b3"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD536E96DF0255",
|
||||||
|
"checksum": "3e896b61d4c98cdf24435df5f6670cc884cfe376e75406f1bcc2e953947591a6"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD536DFC95334C",
|
||||||
|
"checksum": "1b4a5a41e473cda09fd07bfb2041dc26172b976a797e341a26b7f1b9b607697c"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD536E3D04F1FB",
|
||||||
|
"checksum": "26f81aeee258a3f2dc071bebd82e4c829e1c00f8d0c3c4179880ad2d49012eba"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD536EA3C7BF48",
|
||||||
|
"checksum": "eeb321d688421ff73aed37652d7bec2eb68e9399f9bed6f215bed6409c6c6453"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.3.120": {
|
"0.3.120": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
31
manifests/sccache.json
generated
31
manifests/sccache.json
generated
@@ -28,7 +28,36 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/mozilla/sccache/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.9.1"
|
"version": "0.10.0"
|
||||||
|
},
|
||||||
|
"0.10": {
|
||||||
|
"version": "0.10.0"
|
||||||
|
},
|
||||||
|
"0.10.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD55012416929F",
|
||||||
|
"checksum": "1fbb35e135660d04a2d5e42b59c7874d39b3deb17de56330b25b713ec59f849b"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD550122EF3D9A",
|
||||||
|
"checksum": "6d4a77802ec83607478df7b6338be28171e65e58a38a49497ebec1fbb300fce4"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD550123829A62",
|
||||||
|
"checksum": "0d499d0f73fa575f805df014af6ece49b840195fb7de0c552230899d77186ceb"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD5501211A9151",
|
||||||
|
"checksum": "d6a1ce4acd02b937cd61bc675a8be029a60f7bc167594c33d75732bbc0a07400"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD55011FE604AA",
|
||||||
|
"checksum": "5aba39252e2efa26bd76144f87ac59787d60fe567ab785e27e2a8c8190892eac"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD5501207F9BF4",
|
||||||
|
"checksum": "5fd6cd6dd474e91c37510719bf27cfe1826f929e40dd383c22a7b96da9a5458d"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.9": {
|
"0.9": {
|
||||||
"version": "0.9.1"
|
"version": "0.9.1"
|
||||||
|
|||||||
29
manifests/syft.json
generated
29
manifests/syft.json
generated
@@ -24,10 +24,35 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0](https://github.com/anchore/syft/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.19.0"
|
"version": "1.20.0"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.19.0"
|
"version": "1.20.0"
|
||||||
|
},
|
||||||
|
"1.20": {
|
||||||
|
"version": "1.20.0"
|
||||||
|
},
|
||||||
|
"1.20.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD52B9B44D9131",
|
||||||
|
"checksum": "689e12c5cbf67521ce61b9c126068f9eaabe1223e77971b2fede50033ff6b5cc"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD52B9B5107ADF",
|
||||||
|
"checksum": "5fdf7afd0f1bfdbb2a1a575eacef8e10edfcb4783631baaa7572a9f4a4d86441"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD52B9B4FD568D",
|
||||||
|
"checksum": "b8bfdedb261de2a69768097422a73bc72273ee92136ff676a20c3161e658881f"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD52B9B448B4AE",
|
||||||
|
"checksum": "53f76737ddbf425c89240d5b0be0990b1a71e66890b44f19743221b17e6ee635"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD52B9B5075D68",
|
||||||
|
"checksum": "91365712a06af0c0dcd06f5e87fc8791c4332831b3dd6f5474acaaf803d71d82"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.19": {
|
"1.19": {
|
||||||
"version": "1.19.0"
|
"version": "1.19.0"
|
||||||
|
|||||||
42
manifests/typos.json
generated
42
manifests/typos.json
generated
@@ -16,13 +16,49 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "1.29.7"
|
"version": "1.29.9"
|
||||||
},
|
},
|
||||||
"1": {
|
"1": {
|
||||||
"version": "1.29.7"
|
"version": "1.29.9"
|
||||||
},
|
},
|
||||||
"1.29": {
|
"1.29": {
|
||||||
"version": "1.29.7"
|
"version": "1.29.9"
|
||||||
|
},
|
||||||
|
"1.29.9": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD51BEAEB7902D",
|
||||||
|
"checksum": "ef985fe226e823297c9c2aa8553fb718bb11838b744c54429f2900d5dbfd5415"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD51BED49B2305",
|
||||||
|
"checksum": "2dbe0f9ac6a0377592c7d0cf6709caba68765036c00646bd02d608e723b64014"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD51BF1E2DE6DA",
|
||||||
|
"checksum": "8e85bf422026ee15b9464796c48bfb26b53a040132ed5cdf905cbf60d4283764"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD51BEDDC55FCA",
|
||||||
|
"checksum": "d8cdf714be02e1b5ea78376d257ebd8776e5bf2bd9ea92954b6289e7f5f041f9"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"1.29.8": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD50FF6B404955",
|
||||||
|
"checksum": "f1eebf7060e33ff08145bd5f211e75045608b39282c87483033bfe57cbeff3dc"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD50FF76650FE8",
|
||||||
|
"checksum": "90deb589e2d41cf808fde17f2036083c3e92a1a067f867860c4e01b37608034e"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD50FFEAD694DD",
|
||||||
|
"checksum": "b4590074a208bc62a4194a3ab35fbb776c785c135cb7bd6f9689c920761b962d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD50FF9B929E8E",
|
||||||
|
"checksum": "f30be4284ca2780e999dcbe54c58671dcff38e715cfedd2c3c526123054f5715"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"1.29.7": {
|
"1.29.7": {
|
||||||
"x86_64_linux_musl": {
|
"x86_64_linux_musl": {
|
||||||
|
|||||||
60
manifests/wasmtime.json
generated
60
manifests/wasmtime.json
generated
@@ -28,7 +28,65 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "29.0.1"
|
"version": "30.0.1"
|
||||||
|
},
|
||||||
|
"30": {
|
||||||
|
"version": "30.0.1"
|
||||||
|
},
|
||||||
|
"30.0": {
|
||||||
|
"version": "30.0.1"
|
||||||
|
},
|
||||||
|
"30.0.1": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD52CF8F3C37D8",
|
||||||
|
"checksum": "199ad22a5bd21bb58254a08694ea21736218eb98543d8115fe5b061c86acce88"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD52CF90715FF0",
|
||||||
|
"checksum": "14b1c4544e8bd0b5634b8abc6645f067b4805f1cfed888c472311beb171d38a1"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD52CF956BD41D",
|
||||||
|
"checksum": "2403df495779198f55199bcf96b4755338bcecc47803ec892280c79936ff5a88"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD52CF7F0DAC3F",
|
||||||
|
"checksum": "3c7898be02de6daf70dae9daba2916dc04916ce1c5c08d7480dc394059f1962b"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD52CF8028D9DE",
|
||||||
|
"checksum": "7d5484feb0711efa546173e6db4a7006a8412ec1ff0df01498cf83b1450d4840"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD52CF82FDA8E7",
|
||||||
|
"checksum": "378304dd8b05d6ca6547013594e022af923ad047e66d4c8539c0b30f7a4fccbf"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"30.0.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD515A370042BA",
|
||||||
|
"checksum": "e5a1539288e5314eacdbace8b39412302f231233bb4f6e90551958ceb4ed5bef"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD515A38224727",
|
||||||
|
"checksum": "f85a5d3a13a5ef5a757bac0494cd7053fd894cc9c137e7a8fe56f3a53ec4a998"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD515A3CED862C",
|
||||||
|
"checksum": "e3d5f97ffea844a958b2b9a2c266ac60ea090f738ac875bf5ea5172c565be84c"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD515A26A641FA",
|
||||||
|
"checksum": "1b686f8c306ca37b222073ca1fa64a21b4f1a4beaaaf28627d3a0e546635f6b5"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD515A27E5710B",
|
||||||
|
"checksum": "04c8711e050229c94f121f62afe87722846d635d31b3ca7dddd7764c3dddf03b"
|
||||||
|
},
|
||||||
|
"aarch64_windows": {
|
||||||
|
"etag": "0x8DD515A2A941EC2",
|
||||||
|
"checksum": "5cbe71bea3af19a56207a12cd5a636165e32a592b6b55469dc6b17d5650b4c25"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"29": {
|
"29": {
|
||||||
"version": "29.0.1"
|
"version": "29.0.1"
|
||||||
|
|||||||
27
manifests/xh.json
generated
27
manifests/xh.json
generated
@@ -24,7 +24,32 @@
|
|||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/ducaale/xh/blob/master/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/ducaale/xh/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.23.1"
|
"version": "0.24.0"
|
||||||
|
},
|
||||||
|
"0.24": {
|
||||||
|
"version": "0.24.0"
|
||||||
|
},
|
||||||
|
"0.24.0": {
|
||||||
|
"x86_64_linux_musl": {
|
||||||
|
"etag": "0x8DD4FF88945D0F5",
|
||||||
|
"checksum": "c65ffd3aca38cb7d9a618342718650957d2f371f21435f62eb1a19229b033825"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4FF8787DD46E",
|
||||||
|
"checksum": "9a16febb0eb25a0c226dbb889985f2cce1b4f3808a18113742f82f93e5a1290b"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4FF8D187B278",
|
||||||
|
"checksum": "ffadf8460c5f16ccf0da36baa3703ea3da64bc74e8ef13cb9e1b5d29aba3c23d"
|
||||||
|
},
|
||||||
|
"aarch64_linux_musl": {
|
||||||
|
"etag": "0x8DD4FF876E9B91B",
|
||||||
|
"checksum": "e32e714a5babf1196d20c46b198af3083576cd0ffc94e593fc263239f14bfe8d"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD4FF872EAD8EB",
|
||||||
|
"checksum": "15f4fcd7c0321723455b6a56812914fd557baf05d6712d9d086a5008f1dc0579"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.23": {
|
"0.23": {
|
||||||
"version": "0.23.1"
|
"version": "0.23.1"
|
||||||
|
|||||||
30
manifests/zola.json
generated
30
manifests/zola.json
generated
@@ -10,13 +10,41 @@
|
|||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-x86_64-pc-windows-msvc.zip"
|
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-x86_64-pc-windows-msvc.zip"
|
||||||
},
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-aarch64-unknown-linux-gnu.tar.gz"
|
||||||
|
},
|
||||||
"aarch64_macos": {
|
"aarch64_macos": {
|
||||||
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-aarch64-apple-darwin.tar.gz"
|
"url": "https://github.com/getzola/zola/releases/download/v${version}/zola-v${version}-aarch64-apple-darwin.tar.gz"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"license_markdown": "[MIT](https://github.com/getzola/zola/blob/master/LICENSE)",
|
"license_markdown": "[MIT](https://github.com/getzola/zola/blob/master/LICENSE)",
|
||||||
"latest": {
|
"latest": {
|
||||||
"version": "0.19.2"
|
"version": "0.20.0"
|
||||||
|
},
|
||||||
|
"0.20": {
|
||||||
|
"version": "0.20.0"
|
||||||
|
},
|
||||||
|
"0.20.0": {
|
||||||
|
"x86_64_linux_gnu": {
|
||||||
|
"etag": "0x8DD4D41F3D3509F",
|
||||||
|
"checksum": "ca7ed5b33a739c5b5b35a0e207e5c3578a652cd12b61c675763b3ff34c322d08"
|
||||||
|
},
|
||||||
|
"x86_64_macos": {
|
||||||
|
"etag": "0x8DD4D41F3E3B8E8",
|
||||||
|
"checksum": "23f1d5e117c7a01aa1c452cd1ffd3da1af533cf74a93762d9e4e1459fb029646"
|
||||||
|
},
|
||||||
|
"x86_64_windows": {
|
||||||
|
"etag": "0x8DD4D41F41345F4",
|
||||||
|
"checksum": "25cd5082b6717fe50fd1351a4867ece6d898211a9bf37b58180c7b4013f9e061"
|
||||||
|
},
|
||||||
|
"aarch64_linux_gnu": {
|
||||||
|
"etag": "0x8DD4D41F41ADE85",
|
||||||
|
"checksum": "91b428514d1c6b5674ed0e7ec244152b98c0a3eb6b63bb2c887e5966f185f7fa"
|
||||||
|
},
|
||||||
|
"aarch64_macos": {
|
||||||
|
"etag": "0x8DD4D41F4283CF9",
|
||||||
|
"checksum": "6dd8a3c77baef359df00916709e954e415c5acc1fa99fcd754bb600627fb4935"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"0.19": {
|
"0.19": {
|
||||||
"version": "0.19.2"
|
"version": "0.19.2"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ set -x
|
|||||||
has_update=''
|
has_update=''
|
||||||
for manifest in manifests/*.json; do
|
for manifest in manifests/*.json; do
|
||||||
git add -N "${manifest}"
|
git add -N "${manifest}"
|
||||||
if ! git diff --exit-code -- "${manifest}"; then
|
if ! git diff --exit-code -- "${manifest}" &>/dev/null; then
|
||||||
name="${manifest##*/}"
|
name="${manifest##*/}"
|
||||||
name="${name%.*}"
|
name="${name%.*}"
|
||||||
git stash
|
git stash
|
||||||
|
|||||||
@@ -6,8 +6,13 @@ trap -- 's=$?; printf >&2 "%s\n" "${0##*/}:${LINENO}: \`${BASH_COMMAND}\` exit w
|
|||||||
cd -- "$(dirname -- "$0")"/../..
|
cd -- "$(dirname -- "$0")"/../..
|
||||||
|
|
||||||
# They don't provide prebuilt binaries for musl or old glibc host.
|
# They don't provide prebuilt binaries for musl or old glibc host.
|
||||||
|
# version `GLIBC_2.35' not found
|
||||||
|
glibc_pre_2_35_incompat=(
|
||||||
|
zola
|
||||||
|
)
|
||||||
# version `GLIBC_2.34' not found
|
# version `GLIBC_2.34' not found
|
||||||
glibc_pre_2_34_incompat=(
|
glibc_pre_2_34_incompat=(
|
||||||
|
"${glibc_pre_2_35_incompat[@]}"
|
||||||
cargo-spellcheck
|
cargo-spellcheck
|
||||||
wait-for-them
|
wait-for-them
|
||||||
xbuild
|
xbuild
|
||||||
@@ -17,7 +22,6 @@ glibc_pre_2_31_incompat=(
|
|||||||
"${glibc_pre_2_34_incompat[@]}"
|
"${glibc_pre_2_34_incompat[@]}"
|
||||||
cargo-sort
|
cargo-sort
|
||||||
espup
|
espup
|
||||||
zola
|
|
||||||
)
|
)
|
||||||
# version `GLIBC_2.28' not found
|
# version `GLIBC_2.28' not found
|
||||||
glibc_pre_2_28_incompat=(
|
glibc_pre_2_28_incompat=(
|
||||||
@@ -67,28 +71,33 @@ case "$(uname -s)" in
|
|||||||
incompat_tools+=("${musl_incompat[@]}")
|
incompat_tools+=("${musl_incompat[@]}")
|
||||||
else
|
else
|
||||||
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}" | sed "s/.* //g")
|
host_glibc_version=$(grep -E "GLIBC|GNU libc" <<<"${ldd_version}" | sed "s/.* //g")
|
||||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.34"$'\n'"${host_glibc_version}" | tail -1)
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.35"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.31"$'\n'"${host_glibc_version}" | tail -1)
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.34"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.28"$'\n'"${host_glibc_version}" | tail -1)
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.31"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.27"$'\n'"${host_glibc_version}" | tail -1)
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.28"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.17"$'\n'"${host_glibc_version}" | tail -1)
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.27"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
incompat_tools+=("${glibc_pre_2_17_incompat[@]}")
|
higher_glibc_version=$(LC_ALL=C sort -Vu <<<"2.17"$'\n'"${host_glibc_version}" | tail -1)
|
||||||
|
if [[ "${higher_glibc_version}" != "${host_glibc_version}" ]]; then
|
||||||
|
incompat_tools+=("${glibc_pre_2_17_incompat[@]}")
|
||||||
|
else
|
||||||
|
incompat_tools+=("${glibc_pre_2_27_incompat[@]}")
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
incompat_tools+=("${glibc_pre_2_27_incompat[@]}")
|
incompat_tools+=("${glibc_pre_2_28_incompat[@]}")
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
incompat_tools+=("${glibc_pre_2_28_incompat[@]}")
|
incompat_tools+=("${glibc_pre_2_31_incompat[@]}")
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
incompat_tools+=("${glibc_pre_2_31_incompat[@]}")
|
incompat_tools+=("${glibc_pre_2_34_incompat[@]}")
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
incompat_tools+=("${glibc_pre_2_34_incompat[@]}")
|
incompat_tools+=("${glibc_pre_2_35_incompat[@]}")
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
"x86_64_windows": {
|
"x86_64_windows": {
|
||||||
"asset_name": "${package}-v${version}-${rust_target}.zip"
|
"asset_name": "${package}-v${version}-${rust_target}.zip"
|
||||||
},
|
},
|
||||||
|
"aarch64_linux_gnu": {},
|
||||||
"aarch64_macos": {}
|
"aarch64_macos": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,11 +11,11 @@ use std::{
|
|||||||
time::Duration,
|
time::Duration,
|
||||||
};
|
};
|
||||||
|
|
||||||
use anyhow::{bail, Context as _, Result};
|
use anyhow::{Context as _, Result, bail};
|
||||||
use fs_err as fs;
|
use fs_err as fs;
|
||||||
use install_action_internal_codegen::{
|
use install_action_internal_codegen::{
|
||||||
workspace_root, BaseManifest, HostPlatform, Manifest, ManifestDownloadInfo, ManifestRef,
|
BaseManifest, HostPlatform, Manifest, ManifestDownloadInfo, ManifestRef, ManifestTemplate,
|
||||||
ManifestTemplate, ManifestTemplateDownloadInfo, Manifests, Signing, SigningKind, Version,
|
ManifestTemplateDownloadInfo, Manifests, Signing, SigningKind, Version, workspace_root,
|
||||||
};
|
};
|
||||||
use sha2::{Digest as _, Sha256};
|
use sha2::{Digest as _, Sha256};
|
||||||
use spdx::expression::{ExprNode, ExpressionReq, Operator};
|
use spdx::expression::{ExprNode, ExpressionReq, Operator};
|
||||||
@@ -193,7 +193,7 @@ fn main() -> Result<()> {
|
|||||||
|
|
||||||
let version_req: Option<semver::VersionReq> = match version_req {
|
let version_req: Option<semver::VersionReq> = match version_req {
|
||||||
_ if latest_only => {
|
_ if latest_only => {
|
||||||
let req = format!("={}", releases.first_key_value().unwrap().0 .0).parse()?;
|
let req = format!("={}", releases.first_key_value().unwrap().0.0).parse()?;
|
||||||
eprintln!("update manifest for versions '{req}'");
|
eprintln!("update manifest for versions '{req}'");
|
||||||
Some(req)
|
Some(req)
|
||||||
}
|
}
|
||||||
@@ -215,7 +215,7 @@ fn main() -> Result<()> {
|
|||||||
let req = if version_req == "latest" {
|
let req = if version_req == "latest" {
|
||||||
// TODO: this should check all missing versions
|
// TODO: this should check all missing versions
|
||||||
if manifests.map.is_empty() {
|
if manifests.map.is_empty() {
|
||||||
format!("={}", releases.first_key_value().unwrap().0 .0).parse()?
|
format!("={}", releases.first_key_value().unwrap().0.0).parse()?
|
||||||
} else {
|
} else {
|
||||||
format!(">={}", semver_versions.last().unwrap()).parse()?
|
format!(">={}", semver_versions.last().unwrap()).parse()?
|
||||||
}
|
}
|
||||||
@@ -852,7 +852,9 @@ fn get_license_markdown(spdx_expr: &str, repo: &str, default_branch: &str) -> Op
|
|||||||
panic!("Unable to find any license files in the repo for licenses {license_ids:?}");
|
panic!("Unable to find any license files in the repo for licenses {license_ids:?}");
|
||||||
}
|
}
|
||||||
if license_markdowns.len() != len {
|
if license_markdowns.len() != len {
|
||||||
panic!("Unable to find license files in the repo for all licenses {license_ids:?}; found {license_markdowns:?}");
|
panic!(
|
||||||
|
"Unable to find license files in the repo for all licenses {license_ids:?}; found {license_markdowns:?}"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
match op {
|
match op {
|
||||||
None => panic!("op expected"),
|
None => panic!("op expected"),
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ use std::{
|
|||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
use fs_err as fs;
|
use fs_err as fs;
|
||||||
use install_action_internal_codegen::{workspace_root, BaseManifest, Manifests};
|
use install_action_internal_codegen::{BaseManifest, Manifests, workspace_root};
|
||||||
|
|
||||||
const HEADER: &str = "# Tools
|
const HEADER: &str = "# Tools
|
||||||
|
|
||||||
|
|||||||
@@ -144,8 +144,9 @@ tools+=(valgrind)
|
|||||||
|
|
||||||
for tool in "${tools[@]}"; do
|
for tool in "${tools[@]}"; do
|
||||||
git checkout -b "${tool}"
|
git checkout -b "${tool}"
|
||||||
sed -E "${in_place[@]}" "s/required: true/required: false/g" action.yml
|
sed -E "${in_place[@]}" action.yml \
|
||||||
sed -E "${in_place[@]}" "s/# default: #publish:tool/default: ${tool}/g" action.yml
|
-e "s/required: true/required: false/g" \
|
||||||
|
-e "s/# default: #publish:tool/default: ${tool}/g"
|
||||||
git add action.yml
|
git add action.yml
|
||||||
git commit -m "${tool}"
|
git commit -m "${tool}"
|
||||||
retry git push origin -f refs/heads/"${tool}"
|
retry git push origin -f refs/heads/"${tool}"
|
||||||
@@ -193,9 +194,11 @@ cp -- ./manifests/* "${schema_workspace}"
|
|||||||
# Detect changes, then commit and push if changes exist
|
# Detect changes, then commit and push if changes exist
|
||||||
if [[ "$(git status --porcelain=v1 | wc -l)" != "0" ]]; then
|
if [[ "$(git status --porcelain=v1 | wc -l)" != "0" ]]; then
|
||||||
git commit -m 'Update manifest schema'
|
git commit -m 'Update manifest schema'
|
||||||
git push origin HEAD
|
retry git push origin HEAD
|
||||||
fi
|
fi
|
||||||
)
|
)
|
||||||
|
|
||||||
rm -rf -- "${schema_workspace}"
|
rm -rf -- "${schema_workspace}"
|
||||||
git worktree prune
|
git worktree prune
|
||||||
|
# TODO: get branch in schema_workspace dir instead
|
||||||
|
git branch -D "${schema_branch}" "${schema_workspace##*/}"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ cd -- "$(dirname -- "$0")"/..
|
|||||||
# ./tools/tidy.sh
|
# ./tools/tidy.sh
|
||||||
#
|
#
|
||||||
# Note: This script requires the following tools:
|
# Note: This script requires the following tools:
|
||||||
# - git
|
# - git 1.8+
|
||||||
# - jq 1.6+
|
# - jq 1.6+
|
||||||
# - npm (node 18+)
|
# - npm (node 18+)
|
||||||
# - python 3.6+
|
# - python 3.6+
|
||||||
@@ -60,7 +60,11 @@ print_fenced() {
|
|||||||
printf '=======================================\n\n'
|
printf '=======================================\n\n'
|
||||||
}
|
}
|
||||||
check_diff() {
|
check_diff() {
|
||||||
if [[ -n "${CI:-}" ]]; then
|
if [[ -n "${GITHUB_ACTIONS:-}" ]]; then
|
||||||
|
if ! git -c color.ui=always --no-pager diff --exit-code "$@"; then
|
||||||
|
should_fail=1
|
||||||
|
fi
|
||||||
|
elif [[ -n "${CI:-}" ]]; then
|
||||||
if ! git --no-pager diff --exit-code "$@"; then
|
if ! git --no-pager diff --exit-code "$@"; then
|
||||||
should_fail=1
|
should_fail=1
|
||||||
fi
|
fi
|
||||||
@@ -489,9 +493,7 @@ prettier_ext=('*.css' '*.html' '*.js' '*.json' '*.yml' '*.yaml')
|
|||||||
if [[ -n "$(ls_files "${prettier_ext[@]}")" ]]; then
|
if [[ -n "$(ls_files "${prettier_ext[@]}")" ]]; then
|
||||||
info "checking YAML/HTML/CSS/JavaScript/JSON code style"
|
info "checking YAML/HTML/CSS/JavaScript/JSON code style"
|
||||||
check_config .editorconfig
|
check_config .editorconfig
|
||||||
if [[ "${ostype}" == 'solaris' ]] && [[ -n "${CI:-}" ]] && ! type -P npm >/dev/null; then
|
if check_install npm; then
|
||||||
warn "this check is skipped on Solaris due to no node 18+ in upstream package manager"
|
|
||||||
elif check_install npm; then
|
|
||||||
IFS=' '
|
IFS=' '
|
||||||
info "running \`npx -y prettier -l -w \$(git ls-files ${prettier_ext[*]})\`"
|
info "running \`npx -y prettier -l -w \$(git ls-files ${prettier_ext[*]})\`"
|
||||||
IFS=$'\n\t'
|
IFS=$'\n\t'
|
||||||
@@ -510,9 +512,7 @@ check_alt '.yml extension' '.yaml extension' "$(ls_files '*.yaml' | { grep -Fv '
|
|||||||
if [[ -n "$(ls_files '*.toml' | { grep -Fv '.taplo.toml' || true; })" ]]; then
|
if [[ -n "$(ls_files '*.toml' | { grep -Fv '.taplo.toml' || true; })" ]]; then
|
||||||
info "checking TOML style"
|
info "checking TOML style"
|
||||||
check_config .taplo.toml
|
check_config .taplo.toml
|
||||||
if [[ "${ostype}" == 'solaris' ]] && [[ -n "${CI:-}" ]] && ! type -P npm >/dev/null; then
|
if check_install npm; then
|
||||||
warn "this check is skipped on Solaris due to no node 18+ in upstream package manager"
|
|
||||||
elif check_install npm; then
|
|
||||||
info "running \`npx -y @taplo/cli fmt \$(git ls-files '*.toml')\`"
|
info "running \`npx -y @taplo/cli fmt \$(git ls-files '*.toml')\`"
|
||||||
RUST_LOG=warn npx -y @taplo/cli fmt $(ls_files '*.toml')
|
RUST_LOG=warn npx -y @taplo/cli fmt $(ls_files '*.toml')
|
||||||
check_diff $(ls_files '*.toml')
|
check_diff $(ls_files '*.toml')
|
||||||
@@ -527,9 +527,7 @@ check_hidden taplo.toml
|
|||||||
if [[ -n "$(ls_files '*.md')" ]]; then
|
if [[ -n "$(ls_files '*.md')" ]]; then
|
||||||
info "checking markdown style"
|
info "checking markdown style"
|
||||||
check_config .markdownlint-cli2.yaml
|
check_config .markdownlint-cli2.yaml
|
||||||
if [[ "${ostype}" == 'solaris' ]] && [[ -n "${CI:-}" ]] && ! type -P npm >/dev/null; then
|
if check_install npm; then
|
||||||
warn "this check is skipped on Solaris due to no node 18+ in upstream package manager"
|
|
||||||
elif check_install npm; then
|
|
||||||
info "running \`npx -y markdownlint-cli2 \$(git ls-files '*.md')\`"
|
info "running \`npx -y markdownlint-cli2 \$(git ls-files '*.md')\`"
|
||||||
if ! npx -y markdownlint-cli2 $(ls_files '*.md'); then
|
if ! npx -y markdownlint-cli2 $(ls_files '*.md'); then
|
||||||
error "check failed; please resolve the above markdownlint error(s)"
|
error "check failed; please resolve the above markdownlint error(s)"
|
||||||
@@ -669,12 +667,7 @@ elif check_install shellcheck; then
|
|||||||
# Exclude SC2096 due to the way the temporary script is created.
|
# Exclude SC2096 due to the way the temporary script is created.
|
||||||
shellcheck_exclude=SC2096
|
shellcheck_exclude=SC2096
|
||||||
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in \$(git ls-files '*Dockerfile*')\`"
|
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in \$(git ls-files '*Dockerfile*')\`"
|
||||||
if [[ "${ostype}" == 'windows' ]]; then
|
if check_install jq python3 parse-dockerfile; then
|
||||||
# No such file or directory: '/proc/N/fd/N'
|
|
||||||
warn "this check is skipped on Windows due to upstream bug (failed to found fd created by <())"
|
|
||||||
elif [[ "${ostype}" == 'dragonfly' ]]; then
|
|
||||||
warn "this check is skipped on DragonFly BSD due to upstream bug (hang)"
|
|
||||||
elif check_install jq python3 parse-dockerfile; then
|
|
||||||
shellcheck_for_dockerfile() {
|
shellcheck_for_dockerfile() {
|
||||||
local text=$1
|
local text=$1
|
||||||
local shell=$2
|
local shell=$2
|
||||||
@@ -684,15 +677,23 @@ elif check_install shellcheck; then
|
|||||||
fi
|
fi
|
||||||
text="#!${shell}"$'\n'"${text}"
|
text="#!${shell}"$'\n'"${text}"
|
||||||
case "${ostype}" in
|
case "${ostype}" in
|
||||||
windows) text=${text//\r/} ;;
|
windows) text=${text//$'\r'/} ;; # Parse error on git bash/msys2 bash.
|
||||||
esac
|
esac
|
||||||
local color=auto
|
local color=auto
|
||||||
if [[ -t 1 ]] || [[ -n "${GITHUB_ACTIONS:-}" ]]; then
|
if [[ -t 1 ]] || [[ -n "${GITHUB_ACTIONS:-}" ]]; then
|
||||||
color=always
|
color=always
|
||||||
fi
|
fi
|
||||||
if ! shellcheck --color="${color}" --exclude "${shellcheck_exclude}" <(printf '%s\n' "${text}") | sed "s/\/dev\/fd\/[0-9][0-9]*/$(sed_rhs_escape "${display_path}")/g"; then
|
# We don't use <(printf '%s\n' "${text}") here because:
|
||||||
|
# Windows: failed to found fd created by <() ("/proc/*/fd/* (git bash/msys2 bash) /dev/fd/* (cygwin bash): openBinaryFile: does not exist (No such file or directory)" error)
|
||||||
|
# DragonFly BSD: hang
|
||||||
|
# Others: false negative
|
||||||
|
trap -- 'rm -- ./tools/.tidy-tmp; printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT
|
||||||
|
printf '%s\n' "${text}" >|./tools/.tidy-tmp
|
||||||
|
if ! shellcheck --color="${color}" --exclude "${shellcheck_exclude}" ./tools/.tidy-tmp | sed "s/\.\/tools\/\.tidy-tmp/$(sed_rhs_escape "${display_path}")/g"; then
|
||||||
error "check failed; please resolve the above shellcheck error(s)"
|
error "check failed; please resolve the above shellcheck error(s)"
|
||||||
fi
|
fi
|
||||||
|
rm -- ./tools/.tidy-tmp
|
||||||
|
trap -- 'printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT
|
||||||
}
|
}
|
||||||
for dockerfile_path in ${docker_files[@]+"${docker_files[@]}"}; do
|
for dockerfile_path in ${docker_files[@]+"${docker_files[@]}"}; do
|
||||||
dockerfile=$(parse-dockerfile "${dockerfile_path}")
|
dockerfile=$(parse-dockerfile "${dockerfile_path}")
|
||||||
@@ -799,12 +800,7 @@ elif check_install shellcheck; then
|
|||||||
# Exclude SC2096 due to the way the temporary script is created.
|
# Exclude SC2096 due to the way the temporary script is created.
|
||||||
shellcheck_exclude=SC2086,SC2096,SC2129
|
shellcheck_exclude=SC2086,SC2096,SC2129
|
||||||
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in .github/workflows/*.yml and **/action.yml"
|
info "running \`shellcheck --exclude ${shellcheck_exclude}\` for scripts in .github/workflows/*.yml and **/action.yml"
|
||||||
if [[ "${ostype}" == 'windows' ]]; then
|
if check_install jq python3; then
|
||||||
# No such file or directory: '/proc/N/fd/N'
|
|
||||||
warn "this check is skipped on Windows due to upstream bug (failed to found fd created by <())"
|
|
||||||
elif [[ "${ostype}" == 'dragonfly' ]]; then
|
|
||||||
warn "this check is skipped on DragonFly BSD due to upstream bug (hang)"
|
|
||||||
elif check_install jq python3; then
|
|
||||||
shellcheck_for_gha() {
|
shellcheck_for_gha() {
|
||||||
local text=$1
|
local text=$1
|
||||||
local shell=$2
|
local shell=$2
|
||||||
@@ -816,27 +812,33 @@ elif check_install shellcheck; then
|
|||||||
bash* | sh*) ;;
|
bash* | sh*) ;;
|
||||||
*) return ;;
|
*) return ;;
|
||||||
esac
|
esac
|
||||||
|
text="#!/usr/bin/env ${shell%' {0}'}"$'\n'"${text}"
|
||||||
# Use python because sed doesn't support .*?.
|
# Use python because sed doesn't support .*?.
|
||||||
text=$(
|
text=$(
|
||||||
"python${py_suffix}" - <(printf '%s\n%s' "#!/usr/bin/env ${shell%' {0}'}" "${text}") <<EOF
|
"python${py_suffix}" - <<EOF
|
||||||
import re
|
import re
|
||||||
import sys
|
text = re.sub(r"\\\${{.*?}}", "\${__GHA_SYNTAX__}", r'''${text}''')
|
||||||
with open(sys.argv[1], 'r') as f:
|
|
||||||
text = f.read()
|
|
||||||
text = re.sub(r"\\\${{.*?}}", "\${__GHA_SYNTAX__}", text)
|
|
||||||
print(text)
|
print(text)
|
||||||
EOF
|
EOF
|
||||||
)
|
)
|
||||||
case "${ostype}" in
|
case "${ostype}" in
|
||||||
windows) text=${text//\r/} ;;
|
windows) text=${text//$'\r'/} ;; # Python print emits \r\n.
|
||||||
esac
|
esac
|
||||||
local color=auto
|
local color=auto
|
||||||
if [[ -t 1 ]] || [[ -n "${GITHUB_ACTIONS:-}" ]]; then
|
if [[ -t 1 ]] || [[ -n "${GITHUB_ACTIONS:-}" ]]; then
|
||||||
color=always
|
color=always
|
||||||
fi
|
fi
|
||||||
if ! shellcheck --color="${color}" --exclude "${shellcheck_exclude}" <(printf '%s\n' "${text}") | sed "s/\/dev\/fd\/[0-9][0-9]*/$(sed_rhs_escape "${display_path}")/g"; then
|
# We don't use <(printf '%s\n' "${text}") here because:
|
||||||
|
# Windows: failed to found fd created by <() ("/proc/*/fd/* (git bash/msys2 bash) /dev/fd/* (cygwin bash): openBinaryFile: does not exist (No such file or directory)" error)
|
||||||
|
# DragonFly BSD: hang
|
||||||
|
# Others: false negative
|
||||||
|
trap -- 'rm -- ./tools/.tidy-tmp; printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT
|
||||||
|
printf '%s\n' "${text}" >|./tools/.tidy-tmp
|
||||||
|
if ! shellcheck --color="${color}" --exclude "${shellcheck_exclude}" ./tools/.tidy-tmp | sed "s/\.\/tools\/\.tidy-tmp/$(sed_rhs_escape "${display_path}")/g"; then
|
||||||
error "check failed; please resolve the above shellcheck error(s)"
|
error "check failed; please resolve the above shellcheck error(s)"
|
||||||
fi
|
fi
|
||||||
|
rm -- ./tools/.tidy-tmp
|
||||||
|
trap -- 'printf >&2 "%s\n" "${0##*/}: trapped SIGINT"; exit 1' SIGINT
|
||||||
}
|
}
|
||||||
for workflow_path in ${workflows[@]+"${workflows[@]}"}; do
|
for workflow_path in ${workflows[@]+"${workflows[@]}"}; do
|
||||||
workflow=$(yq -c '.' "${workflow_path}")
|
workflow=$(yq -c '.' "${workflow_path}")
|
||||||
@@ -966,11 +968,7 @@ fi
|
|||||||
if [[ -f .cspell.json ]]; then
|
if [[ -f .cspell.json ]]; then
|
||||||
info "spell checking"
|
info "spell checking"
|
||||||
project_dictionary=.github/.cspell/project-dictionary.txt
|
project_dictionary=.github/.cspell/project-dictionary.txt
|
||||||
if [[ "${ostype}" == 'solaris' ]] && [[ -n "${CI:-}" ]] && ! type -P npm >/dev/null; then
|
if check_install npm jq python3; then
|
||||||
warn "this check is skipped on Solaris due to no node 18+ in upstream package manager"
|
|
||||||
elif [[ "${ostype}" == 'illumos' ]]; then
|
|
||||||
warn "this check is skipped on illumos due to upstream bug (dictionaries are not loaded correctly)"
|
|
||||||
elif check_install npm jq python3; then
|
|
||||||
has_rust=''
|
has_rust=''
|
||||||
if [[ -n "$(ls_files '*Cargo.toml')" ]]; then
|
if [[ -n "$(ls_files '*Cargo.toml')" ]]; then
|
||||||
has_rust=1
|
has_rust=1
|
||||||
|
|||||||
Reference in New Issue
Block a user