json/.drone.yml
Niels Lohmann 014724f362
⚗️ change path
2021-05-09 13:49:42 +02:00

48 lines
854 B
YAML

kind: pipeline
name: test-on-arm
platform:
arch: arm
steps:
- name: build
image: gcc
commands:
- mkdir cm
- cd cm
- git -c http.sslVerify=false clone https://gitlab.kitware.com/cmake/cmake.git
- cd cmake
- ./configure
- make cmake ctest -j10
- cd ..
- mkdir build
- cd build
- ../cmake/bin/cmake .. -DJSON_FastTests=ON
- make -j10
- cd test
- ../../cmake/bin/ctest -j10
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: build
image: gcc
commands:
- 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 -j10
- cd ..
- mkdir build
- cd build
- ../cmake-3.20.2/bin/cmake .. -DJSON_FastTests=ON
- make -j10
- cd test
- ../../cmake-3.20.2/bin/ctest -j10