json/.drone.yml

20 lines
334 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
- make
2021-05-08 13:33:30 +02:00
- mkdir build
- cd build
- cmake ..
- cmake --build .