config.yml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. ###########################################################################
  22. # Use the latest 2.1 version of CircleCI pipeline process engine. See: https://circleci.com/docs/2.0/configuration-reference
  23. version: 2.1
  24. commands:
  25. configure:
  26. steps:
  27. - run:
  28. command: |
  29. ./buildconf
  30. ./configure --enable-warnings --enable-werror --with-openssl
  31. build:
  32. steps:
  33. - run: make
  34. test:
  35. steps:
  36. - run: make test-nonflaky
  37. executors:
  38. ubuntu:
  39. machine:
  40. image: ubuntu-2004:202010-01
  41. jobs:
  42. basic:
  43. executor: ubuntu
  44. steps:
  45. - checkout
  46. - configure
  47. - build
  48. - test
  49. arm:
  50. machine:
  51. image: ubuntu-2004:202101-01
  52. resource_class: arm.medium
  53. steps:
  54. - checkout
  55. - configure
  56. - build
  57. - test
  58. workflows:
  59. x86-openssl:
  60. jobs:
  61. - basic
  62. arm-openssl:
  63. jobs:
  64. - arm