boosttest/.drone.yml

12 lines
281 B
YAML
Raw Normal View History

2022-03-29 23:17:31 +08:00
kind: pipeline
name: default
steps:
- name: test
2022-03-29 23:18:39 +08:00
image: gcc:latest
2022-03-29 23:20:35 +08:00
commands:
2022-03-29 23:38:27 +08:00
- wget https://boostorg.jfrog.io/artifactory/main/release/1.77.0/source/boost_1_77_0.tar.bz2
- tar --bzip2 -xf boost_1_77_0.tar.bz2
- cd boost_1_77_0
- ./bootstrap.sh
- ./b2 install
2022-03-29 23:20:35 +08:00
- make