openbsd_0.yml 701 B

1234567891011121314151617181920212223242526272829303132333435
  1. ## do not edit directly; auto-generated by `nim r tools/ci_generate.nim`
  2. image: openbsd/latest
  3. packages:
  4. - gmake
  5. - sqlite3
  6. - node
  7. - boehm-gc
  8. - pcre
  9. - sfml
  10. - sdl2
  11. - libffi
  12. sources:
  13. - https://github.com/nim-lang/Nim
  14. environment:
  15. NIM_TESTAMENT_BATCH: "0_3"
  16. CC: /usr/bin/clang
  17. tasks:
  18. - setup: |
  19. cd Nim
  20. git clone --depth 1 -q https://github.com/nim-lang/csources.git
  21. gmake -C csources -j $(sysctl -n hw.ncpuonline)
  22. bin/nim c koch
  23. echo 'export PATH=$HOME/Nim/bin:$PATH' >> $HOME/.buildenv
  24. - test: |
  25. cd Nim
  26. if ! ./koch runCI; then
  27. nim c -r tools/ci_testresults.nim
  28. exit 1
  29. fi
  30. triggers:
  31. - action: email
  32. condition: failure
  33. to: Andreas Rumpf <rumpf_a@web.de>