Skip to content

Commit 5599bd3

Browse files
committed
add drone config [ci skip]
1 parent 8de6d9c commit 5599bd3

2 files changed

Lines changed: 62 additions & 0 deletions

File tree

.drone.star

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Use, modification, and distribution are
2+
# subject to the Boost Software License, Version 1.0. (See accompanying
3+
# file LICENSE.txt)
4+
#
5+
# Copyright Rene Rivera 2020.
6+
7+
# For Drone CI we use the Starlark scripting language to reduce duplication.
8+
# As the yaml syntax for Drone CI is rather limited.
9+
#
10+
#
11+
globalenv={}
12+
linuxglobalimage="cppalliance/droneubuntu1604:1"
13+
windowsglobalimage="cppalliance/dronevs2019"
14+
15+
def main(ctx):
16+
return [
17+
linux_cxx("Job 0", "g++", packages="", buildtype="boost", buildscript="drone", image=linuxglobalimage, environment={'DRONE_JOB_UUID': 'b6589fc6ab'}, globalenv=globalenv),
18+
osx_cxx("Job 1", "g++", packages="", buildtype="boost", buildscript="drone", environment={'DRONE_JOB_UUID': '356a192b79'}, globalenv=globalenv),
19+
]
20+
21+
# from https://github.com/boostorg/boost-ci
22+
load("@boost_ci//ci/drone/:functions.star", "linux_cxx","windows_cxx","osx_cxx","freebsd_cxx")

.drone/drone.sh

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
#!/bin/bash
2+
3+
# Copyright 2020 Rene Rivera, Sam Darwin
4+
# Distributed under the Boost Software License, Version 1.0.
5+
# (See accompanying file LICENSE.txt or copy at http://boost.org/LICENSE_1_0.txt)
6+
7+
set -e
8+
export TRAVIS_BUILD_DIR=$(pwd)
9+
export DRONE_BUILD_DIR=$(pwd)
10+
export TRAVIS_BRANCH=$DRONE_BRANCH
11+
export VCS_COMMIT_ID=$DRONE_COMMIT
12+
export GIT_COMMIT=$DRONE_COMMIT
13+
export REPO_NAME=$DRONE_REPO
14+
export PATH=~/.local/bin:/usr/local/bin:$PATH
15+
16+
if [ "$DRONE_JOB_BUILDTYPE" == "boost" ]; then
17+
18+
echo '==================================> INSTALL'
19+
20+
cd ..
21+
git clone -b $TRAVIS_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
22+
cd boost-root
23+
git submodule update --init tools/build
24+
git submodule update --init libs/config
25+
git submodule update --init tools/boostdep
26+
git submodule update --init tools/boost_install
27+
git submodule update --init libs/headers
28+
cp -r $TRAVIS_BUILD_DIR/* libs/lambda
29+
python tools/boostdep/depinst/depinst.py lambda
30+
./bootstrap.sh
31+
./b2 headers
32+
33+
echo '==================================> SCRIPT'
34+
35+
TOOLSET=gcc,clang
36+
if [ $TRAVIS_OS_NAME == osx ]; then TOOLSET=clang; fi
37+
./b2 --verbose-test libs/config/test//config_info toolset=$TOOLSET || true
38+
./b2 libs/lambda/test toolset=$TOOLSET
39+
40+
fi

0 commit comments

Comments
 (0)