Skip to content

Commit fc6ad34

Browse files
committed
debug: disabling install script check on windows for now, as the issue cannot be reproduced
Probably the regression discussed here: curl/curl#13958
1 parent aaf0234 commit fc6ad34

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/test-install-osmatrix.yaml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
os: [ubuntu-latest, windows-latest, macos-latest]
17+
os:
18+
- ubuntu-latest
19+
# - windows-latest # disabled for now due to curl error (probably this regression: https://github.com/curl/curl/issues/13958)
20+
- macos-latest]
1821
runs-on: ${{ matrix.os }}
1922
steps:
2023
- uses: actions/checkout@v3

install.sh

+4
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ checkLatestVersion() {
114114
if [[ "$DEBUG" == "true" ]]; then
115115
echo "Resolved latest tag: <$TAG>" >&2
116116
fi
117+
if [[ "$TAG" == "latest" ]]; then
118+
echo "Failed to get the latest version for $REPO_URL"
119+
exit 1
120+
fi
117121
}
118122

119123
# downloadFile downloads the latest binary package and also the checksum

0 commit comments

Comments
 (0)