json/.drone.yml

23 lines
445 B
YAML
Raw Normal View History

2021-05-08 13:33:30 +02:00
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: build
image: gcc
commands:
2021-05-08 13:56:19 +02:00
- 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
2021-05-09 11:07:57 +02:00
- make cmake ctest -j10
2021-05-08 14:41:43 +02:00
- cd ..
2021-05-08 13:33:30 +02:00
- mkdir build
- cd build
2021-05-09 13:00:35 +02:00
- ../cmake-3.20.2/bin/cmake .. -DJSON_FastTests=ON
2021-05-08 20:42:24 +02:00
- make -j10
- cd test
2021-05-09 10:39:37 +02:00
- ../../cmake-3.20.2/bin/ctest -j10