2 Star 1 Fork 1

yozorah / vsorazero

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.drone.yml 941 Bytes
一键复制 编辑 原始数据 按行查看 历史
tonymmm1 提交于 2020-04-23 13:15 . Fixed typo in .drone.yml (#471)
kind: pipeline
type: docker
name: amd64-gcc
platform:
arch: amd64
steps:
- name: build-gcc
image: ubuntu:bionic
commands:
- apt-get update -y
- apt-get install -y g++ cmake libtbb-dev libcurl4-openssl-dev libace-dev git libmysql++-dev
- export TBB_ROOT_DIR=/usr/include/tbb/
- export ACE_ROOT=/usr/include/ace/
- mkdir build
- cd build
- cmake -DDEBUG=0 -DUSE_LIBCURL=1 ..
- make -j$(nproc)
---
kind: pipeline
type: docker
name: amd64-clang
steps:
- name: build-clang
image: ubuntu:bionic
commands:
- apt-get update -y
- apt-get install -y clang cmake libtbb-dev libcurl4-openssl-dev libace-dev git libmysql++-dev
- export CC=/usr/bin/clang
- export CXX=/usr/bin/clang++
- mkdir build
- cd build
- cmake -DDEBUG=0 -DUSE_LIBCURL=1 ..
- make -j$(nproc)
1
https://gitee.com/yozorah/vsorazero.git
git@gitee.com:yozorah/vsorazero.git
yozorah
vsorazero
vsorazero
dev—bot-20231217

搜索帮助