openbsd_0.yml 682 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ## DO NO 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_2"
  16. CC: /usr/bin/clang
  17. tasks:
  18. - setup: |
  19. set -e
  20. cd Nim
  21. . ci/funs.sh && nimBuildCsourcesIfNeeded
  22. $nim_csources c --skipUserCfg --skipParentCfg koch
  23. echo 'export PATH=$HOME/Nim/bin:$PATH' >> $HOME/.buildenv
  24. - test: |
  25. set -e
  26. cd Nim
  27. if ! ./koch runCI; then
  28. nim r tools/ci_testresults.nim
  29. exit 1
  30. fi
  31. triggers:
  32. - action: email
  33. condition: failure
  34. to: Andreas Rumpf <rumpf_a@web.de>