summary refs log tree commit diff stats
path: root/.builds/openbsd_1.yml
diff options
context:
space:
mode:
Diffstat (limited to '.builds/openbsd_1.yml')
-rw-r--r--.builds/openbsd_1.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.builds/openbsd_1.yml b/.builds/openbsd_1.yml
new file mode 100644
index 000000000..d3f0c8795
--- /dev/null
+++ b/.builds/openbsd_1.yml
@@ -0,0 +1,34 @@
+## do not edit directly; auto-generated by `nim r tools/ci_generate.nim`
+
+image: openbsd/latest
+packages:
+- gmake
+- sqlite3
+- node
+- boehm-gc
+- pcre
+- sfml
+- sdl2
+- libffi
+sources:
+- https://github.com/nim-lang/Nim
+environment:
+  NIM_TESTAMENT_BATCH: "1_3"
+  CC: /usr/bin/clang
+tasks:
+- setup: |
+    cd Nim
+    git clone --depth 1 -q https://github.com/nim-lang/csources.git
+    gmake -C csources -j $(sysctl -n hw.ncpuonline)
+    bin/nim c koch
+    echo 'export PATH=$HOME/Nim/bin:$PATH' >> $HOME/.buildenv
+- test: |
+    cd Nim
+    if ! ./koch runCI; then
+      nim c -r tools/ci_testresults.nim
+      exit 1
+    fi
+triggers:
+- action: email
+  condition: failure
+  to: Andreas Rumpf <rumpf_a@web.de>