summaryrefslogtreecommitdiff
path: root/json4cpp/.cirrus.yml
blob: be63315062882b794a1cf237c3817bb679a91270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
arm_container:
  image: gcc:latest

check_task:
  check_script:
  - wget https://github.com/Kitware/CMake/releases/download/v3.20.2/cmake-3.20.2.tar.gz
  - tar xfz cmake-3.20.2.tar.gz
  - cd cmake-3.20.2
  - ./configure
  - make cmake ctest -j4
  - cd ..
  - mkdir build
  - cd build
  - ../cmake-3.20.2/bin/cmake .. -DJSON_FastTests=ON
  - make -j4
  - cd tests
  - ../../cmake-3.20.2/bin/ctest -j4