You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
709 B

4 years ago
  1. freebsd_task:
  2. name: "freebsd:12.1"
  3. freebsd_instance:
  4. image_family: freebsd-12-1
  5. env:
  6. ASSUME_ALWAYS_YES: yes
  7. script:
  8. - tools/install-build-pkgs
  9. - gmake
  10. linux_task:
  11. name: "alpine:3.11"
  12. container:
  13. image: alpine:3.11
  14. cpu: 4
  15. memory: 2G
  16. timeout_in: 10m
  17. script:
  18. - tools/install-build-pkgs
  19. - make STATIC=1 LTO=1
  20. linux_task:
  21. name: "centos:7"
  22. container:
  23. image: centos:7
  24. cpu: 4
  25. memory: 2G
  26. timeout_in: 10m
  27. script:
  28. - tools/install-build-pkgs
  29. - make
  30. - make rpm
  31. linux_task:
  32. name: "centos:8"
  33. container:
  34. image: centos:8
  35. cpu: 4
  36. memory: 2G
  37. timeout_in: 10m
  38. script:
  39. - tools/install-build-pkgs
  40. - make
  41. - make rpm