json/.drone.yml

23 lines
396 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-08 14:41:43 +02:00
- make cmake -j10
- cd ..
2021-05-08 13:33:30 +02:00
- mkdir build
- cd build
2021-05-08 14:41:43 +02:00
- ../cmake-3.20.2/bin/cmake ..
2021-05-08 20:42:24 +02:00
- make -j10
- cd test
- ctest -j10