json/.drone.yml
Niels Lohmann 77a5cd247e
🔧 build cmake
2021-05-08 13:56:19 +02:00

20 lines
334 B
YAML

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
- mkdir build
- cd build
- cmake ..
- cmake --build .