mirror of
https://github.com/taiki-e/install-action.git
synced 2026-04-21 15:10:27 +00:00
ci: Remove windows-2019
https://github.blog/changelog/2025-04-15-upcoming-breaking-changes-and-releases-for-github-actions/
This commit is contained in:
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@@ -72,11 +72,6 @@ jobs:
|
|||||||
- os: macos-13
|
- os: macos-13
|
||||||
- os: macos-14
|
- os: macos-14
|
||||||
- os: macos-15
|
- os: macos-15
|
||||||
- os: windows-2019
|
|
||||||
- os: windows-2019
|
|
||||||
bash: msys64
|
|
||||||
- os: windows-2019
|
|
||||||
bash: cygwin
|
|
||||||
- os: windows-2022
|
- os: windows-2022
|
||||||
- os: windows-2022
|
- os: windows-2022
|
||||||
bash: msys64
|
bash: msys64
|
||||||
|
|||||||
@@ -48,9 +48,6 @@ glibc_pre_2_17_incompat=(
|
|||||||
musl_incompat=(
|
musl_incompat=(
|
||||||
"${glibc_pre_2_17_incompat[@]}"
|
"${glibc_pre_2_17_incompat[@]}"
|
||||||
)
|
)
|
||||||
win2019_gnu_incompat=(
|
|
||||||
cargo-spellcheck
|
|
||||||
)
|
|
||||||
|
|
||||||
incompat_tools=()
|
incompat_tools=()
|
||||||
case "${1:-}" in
|
case "${1:-}" in
|
||||||
@@ -65,8 +62,6 @@ case "${1:-}" in
|
|||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
runner="${2:-}"
|
|
||||||
bash="${3:-}"
|
|
||||||
case "$(uname -s)" in
|
case "$(uname -s)" in
|
||||||
Linux)
|
Linux)
|
||||||
host_os=linux
|
host_os=linux
|
||||||
@@ -115,16 +110,7 @@ case "$(uname -s)" in
|
|||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
Darwin) host_os=macos ;;
|
Darwin) host_os=macos ;;
|
||||||
MINGW* | MSYS* | CYGWIN* | Windows_NT)
|
MINGW* | MSYS* | CYGWIN* | Windows_NT) host_os=windows ;;
|
||||||
host_os=windows
|
|
||||||
case "${bash}" in
|
|
||||||
msys64 | cygwin)
|
|
||||||
if [[ "${runner}" == "windows-2019" ]]; then
|
|
||||||
incompat_tools+=("${win2019_gnu_incompat[@]}")
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
*) bail "unrecognized OS type '$(uname -s)'" ;;
|
*) bail "unrecognized OS type '$(uname -s)'" ;;
|
||||||
esac
|
esac
|
||||||
# See main.sh
|
# See main.sh
|
||||||
|
|||||||
Reference in New Issue
Block a user