summary refs log tree commit diff stats
path: root/.builds
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-02-20 09:08:53 -0800
committerGitHub <noreply@github.com>2021-02-20 18:08:53 +0100
commitac82be07d8ed9795caa0778f0f8577b3934d1d86 (patch)
tree6c0b72306c725f921127a85c715321c80440d64b /.builds
parente94a3e5fcd4f36f090520a859e587c6019ba296b (diff)
downloadNim-ac82be07d8ed9795caa0778f0f8577b3934d1d86.tar.gz
refs #17107 use 2 instead of 3 parallel jobs for openbsd (#17108)
Diffstat (limited to '.builds')
-rw-r--r--.builds/openbsd_0.yml2
-rw-r--r--.builds/openbsd_1.yml2
-rw-r--r--.builds/openbsd_2.yml34
3 files changed, 2 insertions, 36 deletions
diff --git a/.builds/openbsd_0.yml b/.builds/openbsd_0.yml
index 278cb3de9..146ad8165 100644
--- a/.builds/openbsd_0.yml
+++ b/.builds/openbsd_0.yml
@@ -13,7 +13,7 @@ packages:
 sources:
 - https://github.com/nim-lang/Nim
 environment:
-  NIM_TESTAMENT_BATCH: "0_3"
+  NIM_TESTAMENT_BATCH: "0_2"
   CC: /usr/bin/clang
 tasks:
 - setup: |
diff --git a/.builds/openbsd_1.yml b/.builds/openbsd_1.yml
index d3f0c8795..ad3734008 100644
--- a/.builds/openbsd_1.yml
+++ b/.builds/openbsd_1.yml
@@ -13,7 +13,7 @@ packages:
 sources:
 - https://github.com/nim-lang/Nim
 environment:
-  NIM_TESTAMENT_BATCH: "1_3"
+  NIM_TESTAMENT_BATCH: "1_2"
   CC: /usr/bin/clang
 tasks:
 - setup: |
diff --git a/.builds/openbsd_2.yml b/.builds/openbsd_2.yml
deleted file mode 100644
index 4b63e914d..000000000
--- a/.builds/openbsd_2.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-## 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: "2_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>