logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/

netbsd.yml (742B)


  1. # SPDX-FileCopyrightText: 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  2. # SPDX-License-Identifier: MPL-2.0
  3. image: netbsd/latest
  4. packages:
  5. - clang
  6. - gmake
  7. - "py3[0-9]*-cram"
  8. # gmake pulled to get POSIX.1-2024 $^ which pdpmake also supports
  9. sources:
  10. - https://anongit.hacktivis.me/git/utils-std.git
  11. tasks:
  12. - info: "uname -a"
  13. - clang: |
  14. cd utils-std
  15. export CRAM=$(echo /usr/pkg/bin/cram* | head -n 1)
  16. CC=clang ./configure
  17. gmake clean
  18. gmake check
  19. - gcc: |
  20. cd utils-std
  21. export CRAM=$(echo /usr/pkg/bin/cram* | head -n 1)
  22. CC=gcc ./configure
  23. gmake clean
  24. gmake check
  25. triggers:
  26. - action: email
  27. condition: failure
  28. to: contact+builds.sr.ht@hacktivis.me