Compare commits

...

5 Commits

Author SHA1 Message Date
Taiki Endo
7b2bc6ded8 Release 1.1.6 2022-02-20 11:26:34 +09:00
Taiki Endo
49d23019d2 Update cargo-llvm-cov and shfmt 2022-02-20 11:13:16 +09:00
Taiki Endo
9ac80a595c Revert "Update wasmtime to 0.34.1"
This reverts commit a3c80c04ed.

There is no x86_64 linux binary in https://github.com/bytecodealliance/wasmtime/releases/tag/v0.34.1.
2022-02-17 13:13:38 +09:00
Taiki Endo
a3c80c04ed Update wasmtime to 0.34.1 2022-02-17 13:07:07 +09:00
Taiki Endo
200308111f Update scripts 2022-02-17 13:06:46 +09:00
5 changed files with 22 additions and 14 deletions

View File

@@ -25,7 +25,7 @@ jobs:
os:
- ubuntu-18.04
tool:
# NOTE: Specifying the version of valgrind and wasm-pack is not supported.
# Note: Specifying the version of valgrind and wasm-pack is not supported.
- cargo-hack,cargo-llvm-cov,cargo-minimal-versions,parse-changelog,cross,shellcheck,shfmt,valgrind,wasm-pack,wasmtime
- cargo-hack@0.5.12,cargo-llvm-cov@0.2.0,cargo-minimal-versions@0.1.3,parse-changelog@0.4.7,cross@0.2.1,shellcheck@0.8.0,shfmt@3.4.2,wasmtime@0.34.0
include:

View File

@@ -10,6 +10,11 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [1.1.6] - 2022-02-20
- Update `cargo-llvm-cov@latest` to 0.2.1.
- Update `shfmt@latest` to 3.4.3.
## [1.1.5] - 2022-02-08
- Update `wasmtime@latest` to 0.34.0.
@@ -53,7 +58,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v1.1.5...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v1.1.6...HEAD
[1.1.6]: https://github.com/taiki-e/install-action/compare/v1.1.5...v1.1.6
[1.1.5]: https://github.com/taiki-e/install-action/compare/v1.1.4...v1.1.5
[1.1.4]: https://github.com/taiki-e/install-action/compare/v1.1.3...v1.1.4
[1.1.3]: https://github.com/taiki-e/install-action/compare/v1.1.2...v1.1.3

View File

@@ -59,7 +59,7 @@ for tool in "${tools[@]}"; do
# https://github.com/taiki-e/cargo-hack/releases
cargo-hack) latest_version="0.5.12" ;;
# https://github.com/taiki-e/cargo-llvm-cov/releases
cargo-llvm-cov) latest_version="0.2.0" ;;
cargo-llvm-cov) latest_version="0.2.1" ;;
# https://github.com/taiki-e/cargo-minimal-versions/releases
cargo-minimal-versions) latest_version="0.1.3" ;;
# https://github.com/taiki-e/parse-changelog/releases
@@ -121,7 +121,7 @@ for tool in "${tools[@]}"; do
;;
shfmt)
# https://github.com/mvdan/sh/releases
latest_version="3.4.2"
latest_version="3.4.3"
repo="mvdan/sh"
case "${OSTYPE}" in
linux*) target="linux_amd64" ;;

View File

@@ -8,7 +8,7 @@ cd "$(dirname "$0")"/..
# USAGE:
# ./tools/publish.sh <VERSION>
#
# NOTE:
# Note:
# - This script requires parse-changelog <https://github.com/taiki-e/parse-changelog>
bail() {
@@ -31,28 +31,29 @@ git diff --exit-code
git diff --exit-code --staged
# Make sure the same release has not been created in the past.
if gh release view "${tag}" &>/dev/null; then
if gh release view "${tag}" >/dev/null; then
bail "tag '${tag}' has already been created and pushed"
fi
# Make sure the same release does not exist in CHANGELOG.md.
release_date=$(date --utc '+%Y-%m-%d')
if grep <CHANGELOG.md -E "^## \\[${version//./\\.}\\] - ${release_date}$" >/dev/null; then
if grep -Eq "^## \\[${version//./\\.}\\] - ${release_date}$" CHANGELOG.md; then
bail "release ${version} already exist in CHANGELOG.md"
fi
if grep <CHANGELOG.md -E "^\\[${version//./\\.}\\]: " >/dev/null; then
if grep -Eq "^\\[${version//./\\.}\\]: " CHANGELOG.md; then
bail "link to ${version} already exist in CHANGELOG.md"
fi
# Update changelog.
remote_url=$(grep -E '^\[Unreleased\]: https://' CHANGELOG.md | sed 's/^\[Unreleased\]: //' | sed 's/\.\.\.HEAD$//')
before_tag=$(sed <<<"${remote_url}" 's/^.*\/compare\///')
remote_url=$(sed <<<"${remote_url}" 's/\/compare\/v.*$//')
sed -i "s/^## \\[Unreleased\\]/## [Unreleased]\\n\\n## [${version}] - ${release_date}/" CHANGELOG.md
sed -i "s#^\[Unreleased\]: https://.*#[Unreleased]: ${remote_url}/compare/v${version}...HEAD\\n[${version}]: ${remote_url}/compare/${before_tag}...v${version}#" CHANGELOG.md
if ! grep <CHANGELOG.md -E "^## \\[${version//./\\.}\\] - ${release_date}$" >/dev/null; then
if ! grep -Eq "^## \\[${version//./\\.}\\] - ${release_date}$" CHANGELOG.md; then
bail "failed to update CHANGELOG.md"
fi
if ! grep <CHANGELOG.md -E "^\\[${version//./\\.}\\]: " >/dev/null; then
if ! grep -Eq "^\\[${version//./\\.}\\]: " CHANGELOG.md; then
bail "failed to update CHANGELOG.md"
fi
@@ -62,6 +63,7 @@ echo "============== CHANGELOG =============="
parse-changelog CHANGELOG.md "${version}"
echo "======================================="
# Create a release commit.
git add CHANGELOG.md
git commit -m "Release ${version}"
@@ -88,7 +90,7 @@ tools=(
version_tag="v${version%%.*}"
git checkout -b "${version_tag}"
git push origin refs/heads/"${version_tag}"
if git --no-pager tag | grep -E "^${version_tag}$" &>/dev/null; then
if git --no-pager tag | grep -Eq "^${version_tag}$"; then
git tag -d "${version_tag}"
git push --delete origin refs/tags/"${version_tag}"
fi
@@ -106,7 +108,7 @@ for tool in "${tools[@]}"; do
git add action.yml
git commit -m "${tool}"
git push origin -f refs/heads/"${tool}"
if git --no-pager tag | grep -E "^${tool}$" &>/dev/null; then
if git --no-pager tag | grep -Eq "^${tool}$"; then
git tag -d "${tool}"
git push --delete origin refs/tags/"${tool}"
fi

View File

@@ -7,7 +7,7 @@ cd "$(dirname "$0")"/..
# USAGE:
# ./tools/tidy.sh
#
# NOTE: This script requires the following tools:
# Note: This script requires the following tools:
# - shfmt
# - prettier
# - shellcheck