summary refs log tree commit diff stats
path: root/.builds
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-03-27 22:45:22 -0700
committerGitHub <noreply@github.com>2020-03-28 01:45:22 -0400
commit95ab9ab75da074fcb60f9f2c0e4ef4eab7624f8b (patch)
tree14769b146836dbce59f53a62be58960bd17a51fd /.builds
parent0a49fe5fad36c917f459420d832cda306d449d6e (diff)
downloadNim-95ab9ab75da074fcb60f9f2c0e4ef4eab7624f8b.tar.gz
[CI] fix recent freebsd systematic failure (#13788)
Diffstat (limited to '.builds')
-rw-r--r--.builds/freebsd.yml23
1 files changed, 14 insertions, 9 deletions
diff --git a/.builds/freebsd.yml b/.builds/freebsd.yml
index 352fc2ccb..ef2e8f44d 100644
--- a/.builds/freebsd.yml
+++ b/.builds/freebsd.yml
@@ -1,20 +1,25 @@
 # see https://man.sr.ht/builds.sr.ht/compatibility.md#freebsd
 image: freebsd/latest
-packages:
-- databases/sqlite3
-- devel/boehm-gc-threaded
-- devel/pcre
-- devel/sdl20
-- devel/sfml
-- www/node
-- devel/gmake
-- devel/git
+
+# packages:
+# - databases/sqlite3
+# - devel/boehm-gc-threaded
+# - devel/pcre
+# - devel/sdl20
+# - devel/sfml
+# - www/node
+# - devel/gmake
+# - devel/git
 sources:
 - https://github.com/nim-lang/Nim
 environment:
   CC: /usr/bin/clang
 tasks:
 - setup: |
+    # workaround https://github.com/timotheecour/Nim/issues/76
+    sudo pkg update -q -f
+    sudo pkg install -y -q databases/sqlite3 devel/boehm-gc-threaded devel/pcre \
+      devel/sdl20 devel/sfml www/node devel/gmake devel/git
     cd Nim
     git clone --depth 1 -q https://github.com/nim-lang/csources.git
     gmake -C csources -j $(sysctl -n hw.ncpu)