Compare commits

...

17 Commits

Author SHA1 Message Date
Taiki Endo
eadc55d54a xbuild 2026-05-03 10:38:26 +00:00
Taiki Endo
db5fb34fa7 Release 2.75.30 2026-05-03 10:38:24 +00:00
Taiki Endo
095ffb3a38 ci: Mark cargo-spellcheck as glibc_pre_2_39_incompat
```
+ cargo-spellcheck spellcheck --version
  cargo-spellcheck: /lib64/libc.so.6: version `GLIBC_2.39' not found
  (required by cargo-spellcheck)
  ```
2026-05-03 19:24:58 +09:00
Taiki Endo
4d6d7ab8c9 Update cargo-spellcheck@latest to 0.15.7 2026-05-03 19:24:58 +09:00
Taiki Endo
9f05712f99 Update biome@latest to 2.4.14 2026-05-03 19:24:58 +09:00
Taiki Endo
fea765a776 ci: Update config 2026-05-03 06:44:45 +09:00
Taiki Endo
b06c9cba54 codegen: cargo-spellcheck now provides AArch64 Linux/Windows binaries 2026-05-03 06:20:16 +09:00
Taiki Endo
b5fddbb536 Release 2.75.29 2026-05-02 19:40:03 +00:00
dependabot[bot]
5dab223281 Bump taiki-e/install-action from 2.75.3 to 2.75.17 (#1754)
Bumps the github-actions group with 1 update in the / directory: [taiki-e/install-action](https://github.com/taiki-e/install-action).


Updates `taiki-e/install-action` from 2.75.3 to 2.75.17
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](b8be7f5e14...58e8625425)

---
updated-dependencies:
- dependency-name: taiki-e/install-action
  dependency-version: 2.75.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-05-03 04:31:17 +09:00
Taiki Endo
5bdd194353 Revert "ci: Temporarily disable valgrind test"
This reverts commit 40088a0f3b.
2026-05-03 04:18:42 +09:00
Taiki Endo
ef16a20345 Update cargo-deb manifest 2026-05-02 19:16:42 +00:00
Taiki Endo
e565ba433e ci,tools: Update config and scripts 2026-05-03 04:02:20 +09:00
Taiki Endo
9d6a9dded6 Update tombi manifest 2026-05-02 18:34:40 +00:00
Taiki Endo
bdddcdcc79 Update syft@latest to 1.44.0 2026-05-02 18:34:40 +00:00
Taiki Endo
9c6db3bb61 Update rclone@latest to 1.74.0 2026-05-02 18:34:40 +00:00
Taiki Endo
71d23d4987 Update osv-scanner@latest to 2.3.6 2026-05-02 05:43:31 +00:00
Taiki Endo
9bbb5bc118 Update cargo-spellcheck manifest 2026-05-01 20:51:55 +00:00
16 changed files with 159 additions and 66 deletions

View File

@@ -15,7 +15,7 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
interval: monthly
cooldown:
default-days: 14
commit-message:

View File

@@ -1,7 +1,6 @@
name: CI
permissions:
contents: read
permissions: {}
on:
pull_request:
@@ -33,20 +32,20 @@ concurrency:
jobs:
miri:
uses: taiki-e/github-actions/.github/workflows/miri.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/miri.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
with:
# NB: sync with test job's --exclude option
args: --exclude install-action-internal-codegen
msrv:
uses: taiki-e/github-actions/.github/workflows/msrv.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/msrv.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
test-manifest-schema:
uses: taiki-e/github-actions/.github/workflows/test.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/test.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
with:
# NB: sync with miri job's --exclude option
test-args: --exclude install-action-internal-codegen
no-std: false
tidy:
uses: taiki-e/github-actions/.github/workflows/tidy.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/tidy.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
permissions:
contents: write # for creating branch for pr
pull-requests: write # unused (used in `codegen-automerge: true` case)
@@ -151,7 +150,7 @@ jobs:
if: matrix.bash != 'cygwin' && matrix.os != 'windows-11-arm'
test-alias:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
@@ -255,7 +254,7 @@ jobs:
- alpine:3.22 # musl 1.2.5
- alpine:3.23 # musl 1.2.5
# - openwrt/rootfs:x86-64-openwrt-24.10 # musl 1.2.5
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60
container: ${{ matrix.container }}
steps:

View File

@@ -1,7 +1,6 @@
name: Manifest
permissions:
contents: read
permissions: {}
on:
pull_request:
@@ -33,7 +32,7 @@ concurrency:
jobs:
manifest:
uses: taiki-e/github-actions/.github/workflows/gen.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/gen.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
permissions:
contents: write # for creating branch for pr
pull-requests: write # for gh pr review --approve

View File

@@ -2,8 +2,7 @@ name: Release
# Adapted from https://github.com/taiki-e/github-actions/blob/HEAD/.github/workflows/action-release.yml.
permissions:
contents: read
permissions: {}
on:
workflow_dispatch:
@@ -26,7 +25,7 @@ on:
defaults:
run:
shell: bash --noprofile --norc -CeEuxo pipefail {0}
shell: bash --noprofile --norc -CeEuo pipefail {0}
concurrency:
group: ${{ github.workflow }}
@@ -35,17 +34,16 @@ concurrency:
jobs:
prepare:
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60
steps:
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
- uses: taiki-e/install-action@b8be7f5e140177087325943c4a8e169d01c59b3d # v2.75.3
- uses: taiki-e/install-action@58e862542551f667fa44c8a2a4a1d64ad477c96a # v2.75.17
with:
tool: parse-changelog
fallback: none
- id: check
run: |
set +x
IFS=$'\n\t'
trap -- 's=$?; printf >&2 "%s\n" "${0##*/}:${LINENO}: \`${BASH_COMMAND}\` exit with ${s}"; exit ${s}' ERR
retry() {
@@ -70,23 +68,23 @@ jobs:
# shellcheck disable=SC2153
version="${VERSION}"
printf '%s\n' "version(input): ${version}"
printf 'version(input): %s\n' "${version}"
# shellcheck disable=SC2153
tag_prefix="${TAG_PREFIX}"
printf '%s\n' "tag_prefix: ${tag_prefix}"
printf 'tag_prefix: %s\n' "${tag_prefix}"
# shellcheck disable=SC2153
changelog="${CHANGELOG}"
printf '%s\n' "changelog: ${changelog}"
printf 'changelog: %s\n' "${changelog}"
# Get the current date.
release_date=$(date -u '+%Y-%m-%d')
printf '%s\n' "release-date: ${release_date}"
printf '%s\n' "release-date=${release_date}" >>"${GITHUB_OUTPUT}"
printf 'release-date: %s\n' "${release_date}"
printf 'release-date=%s\n' "${release_date}" >>"${GITHUB_OUTPUT}"
# Get the current revision.
rev=$(git rev-parse HEAD)
printf '%s\n' "rev: ${rev}"
printf '%s\n' "rev=${rev}" >>"${GITHUB_OUTPUT}"
printf 'rev: %s\n' "${rev}"
printf 'rev=%s\n' "${rev}" >>"${GITHUB_OUTPUT}"
prev_version=$(parse-changelog --title-no-link "${changelog}" | cut -d' ' -f1)
@@ -111,11 +109,11 @@ jobs:
if [[ ! "${version}" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z\.-]+)?(\+[0-9A-Za-z\.-]+)?$ ]]; then
bail "invalid version format '${version}'"
fi
printf '%s\n' "version: ${version}"
printf '%s\n' "version=${version}" >>"${GITHUB_OUTPUT}"
printf 'version: %s\n' "${version}"
printf 'version=%s\n' "${version}" >>"${GITHUB_OUTPUT}"
tag="${tag_prefix}${version}"
printf '%s\n' "tag: ${tag}"
printf '%s\n' "tag=${tag}" >>"${GITHUB_OUTPUT}"
printf 'tag: %s\n' "${tag}"
printf 'tag=%s\n' "${tag}" >>"${GITHUB_OUTPUT}"
# Make sure the same release has not been created in the past.
if gh release view "${tag}" &>/dev/null; then
@@ -199,7 +197,7 @@ jobs:
release:
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action'
needs: prepare
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
timeout-minutes: 60
environment:
name: release
@@ -208,7 +206,7 @@ jobs:
contents: write # for taiki-e/create-gh-release-action
steps:
- uses: taiki-e/checkout-action@7d1e50e93dc4fb3bba58f85018fadf77898aee8b # v1.4.2
- uses: taiki-e/install-action@b8be7f5e140177087325943c4a8e169d01c59b3d # v2.75.3
- uses: taiki-e/install-action@58e862542551f667fa44c8a2a4a1d64ad477c96a # v2.75.17
with:
tool: parse-changelog
fallback: none
@@ -220,7 +218,6 @@ jobs:
- name: Create and push release commit and tag
id: push
run: |
set +x
IFS=$'\n\t'
trap -- 's=$?; printf >&2 "%s\n" "${0##*/}:${LINENO}: \`${BASH_COMMAND}\` exit with ${s}"; exit ${s}' ERR
retry() {
@@ -436,7 +433,7 @@ jobs:
release-manifest-schema:
if: github.repository_owner == 'taiki-e' && inputs.target == 'install-action-manifest-schema'
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@3c1cac16ef654d1febb66f21f328fa167f0d2fef # main
uses: taiki-e/github-actions/.github/workflows/rust-release.yml@68753a4331ec78cb842512fd16ae32da0c066e31 # main
permissions:
contents: write # for taiki-e/create-gh-release-action
id-token: write # for rust-lang/crates-io-auth-action

View File

@@ -10,6 +10,22 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.75.30] - 2026-05-03
- Update `cargo-spellcheck@latest` to 0.15.7.
- Update `biome@latest` to 2.4.14.
- Support `cargo-spellcheck` on AArch64 Linux/Windows.
## [2.75.29] - 2026-05-02
- Update `syft@latest` to 1.44.0.
- Update `rclone@latest` to 1.74.0.
- Update `osv-scanner@latest` to 2.3.6.
## [2.75.28] - 2026-05-01
- Update `wasmtime@latest` to 44.0.1.
@@ -6407,7 +6423,9 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.28...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.75.30...HEAD
[2.75.30]: https://github.com/taiki-e/install-action/compare/v2.75.29...v2.75.30
[2.75.29]: https://github.com/taiki-e/install-action/compare/v2.75.28...v2.75.29
[2.75.28]: https://github.com/taiki-e/install-action/compare/v2.75.27...v2.75.28
[2.75.27]: https://github.com/taiki-e/install-action/compare/v2.75.26...v2.75.27
[2.75.26]: https://github.com/taiki-e/install-action/compare/v2.75.25...v2.75.26

View File

@@ -4,8 +4,8 @@ description: GitHub Action for installing development tools
inputs:
tool:
description: Tools to install (whitespace or comma separated list)
required: true
# default: #publish:tool
required: false
default: xbuild
checksum:
description: Whether to enable checksums (strongly discouraged to disable)
required: false

6
manifests/biome.json generated
View File

@@ -2,13 +2,13 @@
"rust_crate": null,
"template": null,
"latest": {
"version": "2.4.13"
"version": "2.4.14"
},
"2": {
"version": "2.4.13"
"version": "2.4.14"
},
"2.4": {
"version": "2.4.13"
"version": "2.4.14"
},
"2.4.14": {
"x86_64_linux_musl": {

View File

@@ -12,6 +12,12 @@
"3": {
"version": "3.6.4"
},
"3.7.0": {
"x86_64_linux_gnu": {
"etag": "0x8DEA87CE0C3370E",
"hash": "e61273031c84b6ef2ca3fb259b594d34d2b592e1c6bc378c1249380c53e5b05e"
}
},
"3.6": {
"version": "3.6.4"
},

View File

@@ -1,35 +1,54 @@
{
"rust_crate": "cargo-spellcheck",
"template": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-unknown-linux-gnu"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v${version}/cargo-spellcheck-v${version}-x86_64-pc-windows-gnu.exe"
}
},
"template": null,
"latest": {
"version": "0.15.1"
"version": "0.15.7"
},
"0.15": {
"version": "0.15.1"
"version": "0.15.7"
},
"0.15.7": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-unknown-linux-gnu",
"etag": "0x8DEA7C00640F8EA",
"hash": "6c944067adde19558aff6b6eb0003e82a95a52ac9dd75465ba3df894eeac5b74"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-x86_64-pc-windows-msvc.exe",
"etag": "0x8DEA7C002803985",
"hash": "fef4eae8bd21d1edac52b00c7729fbabd7ad47bb6053e29025d62adb2746c93f"
},
"aarch64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-unknown-linux-gnu",
"etag": "0x8DEA7C0074205C5",
"hash": "22c5ea30ca4bc86004022cffb671bdbf971d66f2dd564397e8a7647cadcf3ec8"
},
"aarch64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.7/cargo-spellcheck-v0.15.7-aarch64-pc-windows-msvc.exe",
"etag": "0x8DEA7C002536910",
"hash": "cc72699c01f192f160d2c402fa44efdd56b9ff5856c5b1d4cd5af1631ded48a3"
}
},
"0.15.2": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-unknown-linux-gnu",
"etag": "0x8DD4A85530EF13A",
"hash": "9b36eb04e83aaea2c943064fbb2e5a04d37a46bcf51dfd99495b74b09ff56455"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.2/cargo-spellcheck-v0.15.2-x86_64-pc-windows-gnu.exe",
"etag": "0x8DD4A8564500872",
"hash": "5d70eac68be1dae5fb69439217581f79e642867ddd4b67ba258e224de6ff82a2"
}
},
"0.15.1": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-unknown-linux-gnu",
"etag": "0x8DD49AEF852F898",
"hash": "b96e4e73babd959aa138d1629b143180e83ebd8461064fa68e99e2e961560029"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.15.1/cargo-spellcheck-v0.15.1-x86_64-pc-windows-gnu.exe",
"etag": "0x8DD49AF09E6176C",
"hash": "53e697b1016880ffe864dfba9fda68c050694644267557450881d52d9eed987d"
}
@@ -39,10 +58,12 @@
},
"0.14.0": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-unknown-linux-gnu",
"etag": "0x8DC6466EF3038F3",
"hash": "6f35073843f2eb87990ef19c841c61ded5263e3a7ff38f885cfab22193b84f13"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.14.0/cargo-spellcheck-v0.14.0-x86_64-pc-windows-gnu.exe",
"etag": "0x8DC646705A424A4",
"hash": "ad97a1471b7e718902ec385c3ad045a6afbc986f736d0c4986855ec99a79c80c"
}
@@ -52,30 +73,36 @@
},
"0.13.2": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-unknown-linux-gnu",
"etag": "0x8DC0E0760B5DD94",
"hash": "f547b8f992dcc43f8a4106bae8b090ecb3fcb7ef6ce336081c22636f70e876d9"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.2/cargo-spellcheck-v0.13.2-x86_64-pc-windows-gnu.exe",
"etag": "0x8DC0E07751C8D13",
"hash": "f54fb8243497258115d1eb55b99bfc94ab3e09636c78665d3b6410885ba9190a"
}
},
"0.13.1": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-unknown-linux-gnu",
"etag": "0x8DBC987279A3734",
"hash": "17af34dbefad5c45d23df3e4e81b0addc78782db0ed2e8e491a1532761463e1e"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.1/cargo-spellcheck-v0.13.1-x86_64-pc-windows-gnu.exe",
"etag": "0x8DBC9875250341E",
"hash": "d18c19a3c5e7eb9ea516e691b54a4517a60517b6b1fb75b7f56a0c1dcc9b177e"
}
},
"0.13.0": {
"x86_64_linux_gnu": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-unknown-linux-gnu",
"etag": "0x8DB98F2A6C10BCB",
"hash": "41e99240e55f38cc6d43d7ea9f2ccd448f584eefdc262129e4238f057d995923"
},
"x86_64_windows": {
"url": "https://github.com/drahnr/cargo-spellcheck/releases/download/v0.13.0/cargo-spellcheck-v0.13.0-x86_64-pc-windows-gnu.exe",
"etag": "0x8DB98F240CB78CC",
"hash": "57d45d5942d7ccd49599aae549c0bd5d906868eaeb39481088e55001d65f4784"
}

View File

@@ -2,13 +2,13 @@
"rust_crate": null,
"template": null,
"latest": {
"version": "2.3.5"
"version": "2.3.6"
},
"2": {
"version": "2.3.5"
"version": "2.3.6"
},
"2.3": {
"version": "2.3.5"
"version": "2.3.6"
},
"2.3.6": {
"x86_64_linux_musl": {

7
manifests/rclone.json generated
View File

@@ -27,10 +27,13 @@
}
},
"latest": {
"version": "1.73.5"
"version": "1.74.0"
},
"1": {
"version": "1.73.5"
"version": "1.74.0"
},
"1.74": {
"version": "1.74.0"
},
"1.74.0": {
"x86_64_linux_musl": {

7
manifests/syft.json generated
View File

@@ -35,10 +35,13 @@
}
},
"latest": {
"version": "1.43.0"
"version": "1.44.0"
},
"1": {
"version": "1.43.0"
"version": "1.44.0"
},
"1.44": {
"version": "1.44.0"
},
"1.44.0": {
"x86_64_linux_musl": {

36
manifests/tombi.json generated
View File

@@ -7,6 +7,42 @@
"0.10": {
"version": "0.10.1"
},
"0.10.2": {
"x86_64_linux_musl": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-x86_64-unknown-linux-musl.tar.gz",
"etag": "0x8DEA86927EBA7E7",
"hash": "c4268eaaea8a7eb23c8578b5d8976b2490e748670a3725db4f5e4352f9d3076c",
"bin": "tombi-cli-0.10.2-x86_64-unknown-linux-musl/tombi"
},
"x86_64_macos": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-x86_64-apple-darwin.tar.gz",
"etag": "0x8DEA86927DE9741",
"hash": "b3ed94dc4396f565728a7ccb08de466de13607b3f4e73741ab5a3d13571e46f7",
"bin": "tombi-cli-0.10.2-x86_64-apple-darwin/tombi"
},
"x86_64_windows": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-x86_64-pc-windows-msvc.zip",
"etag": "0x8DEA86927F5AEC2",
"hash": "8ecfb32d7fe90612a626a25500fa92a9b4e42dbad6a00f202849901a058dd6a7"
},
"aarch64_linux_musl": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-aarch64-unknown-linux-musl.tar.gz",
"etag": "0x8DEA869285CD610",
"hash": "9cb16ec45802bc84cb76bb955facb4f1c5de9bd36f349075765ed12d180ceccf",
"bin": "tombi-cli-0.10.2-aarch64-unknown-linux-musl/tombi"
},
"aarch64_macos": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-aarch64-apple-darwin.tar.gz",
"etag": "0x8DEA86927DA2F62",
"hash": "e456b5518923f1c3b3b136aa92c57aa9ffc6f27d8ce155af337509d3f5a3a619",
"bin": "tombi-cli-0.10.2-aarch64-apple-darwin/tombi"
},
"aarch64_windows": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.2/tombi-cli-0.10.2-aarch64-pc-windows-msvc.zip",
"etag": "0x8DEA86927F2095A",
"hash": "532d25f214564bf685b2bfbd21cf2202c70ff4d8c66b0e449ca669bcffd9eba2"
}
},
"0.10.1": {
"x86_64_linux_musl": {
"url": "https://github.com/tombi-toml/tombi/releases/download/v0.10.1/tombi-cli-0.10.1-x86_64-unknown-linux-musl.tar.gz",

View File

@@ -6,11 +6,13 @@ trap -- 's=$?; printf >&2 "%s\n" "${0##*/}:${LINENO}: \`${BASH_COMMAND}\` exit w
cd -- "$(dirname -- "$0")"/../..
# They don't provide prebuilt binaries for musl or old glibc host.
# version `GLIBC_2.35' not found
# version `GLIBC_2.39' not found
glibc_pre_2_39_incompat=(
cargo-deb
cargo-spellcheck
zizmor
)
# version `GLIBC_2.35' not found
glibc_pre_2_35_incompat=(
"${glibc_pre_2_39_incompat[@]}"
zola
@@ -19,7 +21,6 @@ glibc_pre_2_35_incompat=(
glibc_pre_2_34_incompat=(
"${glibc_pre_2_35_incompat[@]}"
cargo-sort
cargo-spellcheck
espup
wait-for-them
xbuild
@@ -191,12 +192,11 @@ fi
# Not manifest-based
case "${host_os}" in
linux*)
# TODO: disable valgrind due to Canonical's incident.
# Installing snap to container is difficult...
# Specifying the version of valgrind is not supported.
# if type -P snap >/dev/null && [[ "${version}" == "latest" ]]; then
# tools+=(valgrind)
# fi
if type -P snap >/dev/null && [[ "${version}" == "latest" ]]; then
tools+=(valgrind)
fi
;;
esac
# cargo-watch/watchexec-cli is supported by cargo-binstall (through quickinstall)

View File

@@ -3,12 +3,17 @@
"license_markdown": "[LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL)",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-v${version}-${rust_target}",
"asset_name": "${package}-v${version}-${rust_target}${exe}",
"version_range": ">= 0.13",
"platform": {
"x86_64_linux_gnu": {},
"x86_64_windows": {
"asset_name": "${package}-v${version}-x86_64-pc-windows-gnu.exe"
}
"asset_name": [
"${package}-v${version}-${rust_target}${exe}",
"${package}-v${version}-x86_64-pc-windows-gnu${exe}"
]
},
"aarch64_linux_gnu": {},
"aarch64_windows": {}
}
}

View File

@@ -27,7 +27,7 @@ fi
if [[ -n "${TIDY_DEV:-}" ]]; then
image="ghcr.io/taiki-e/tidy:latest"
else
image="ghcr.io/taiki-e/tidy@sha256:71def761a5585e83a2672c4051aee13cd886ad5571215aee52f193454bb3cdff"
image="ghcr.io/taiki-e/tidy@sha256:c78ba09aa420feddc57ca76fca38b1d4c998a0ede37f76378f12df15a826cf59"
fi
user="$(id -u):$(id -g)"
workdir=$(pwd)