Skip to content

Commit 9598e6e

Browse files
committed
Build: trying to replace not working WGET with CURL on FreeBSD Cirrus' test
1 parent 587c223 commit 9598e6e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.cirrus.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ task:
55
install_script:
66
- date
77
- uname -a
8-
- pkg install -y wget
9-
- wget -nv https://github.com/Siskin-framework/Builder/releases/download/0.7.2/Siskin-x64-freebsd.gz
8+
# WGET is not working on Cirrus FreeBSD VM anymore :-/
9+
# - pkg install -y wget
10+
# - wget -nv https://github.com/Siskin-framework/Builder/releases/download/0.7.2/Siskin-x64-freebsd.gz
11+
# Trying to do the same with CURL (if it exists there)
12+
- curl -L -S https://github.com/Siskin-framework/Builder/releases/download/0.7.2/Siskin-x64-freebsd.gz --output Siskin-x64-freebsd.gz
1013
- gunzip ./Siskin-x64-freebsd.gz
1114
- mv ./Siskin-x64-freebsd ./Siskin
1215
- chmod u+x ./Siskin

0 commit comments

Comments
 (0)