mirror of
https://github.com/boostorg/vmd.git
synced 2026-01-19 04:42:16 +00:00
25 lines
1.6 KiB
Plaintext
25 lines
1.6 KiB
Plaintext
# Use, modification, and distribution are
|
|
# subject to the Boost Software License, Version 1.0. (See accompanying
|
|
# file LICENSE.txt)
|
|
#
|
|
# Copyright Rene Rivera 2020.
|
|
|
|
# For Drone CI we use the Starlark scripting language to reduce duplication.
|
|
# As the yaml syntax for Drone CI is rather limited.
|
|
#
|
|
#
|
|
globalenv={}
|
|
linuxglobalimage="cppalliance/droneubuntu1604:1"
|
|
windowsglobalimage="cppalliance/dronevs2019"
|
|
|
|
def main(ctx):
|
|
return [
|
|
linux_cxx("TEST_CMAKE=TRUE Job 0", "g++", packages="", buildtype="88140f0f85-2319b6d45f", buildscript="drone", image=linuxglobalimage, environment={'TEST_CMAKE': 'TRUE', 'DRONE_JOB_UUID': 'b6589fc6ab'}, globalenv=globalenv),
|
|
linux_cxx("TOOLSET=gcc COMPILER=g++ CXXSTD=c++11 Job 1", "g++", packages="", buildtype="boost", buildscript="drone", image=linuxglobalimage, environment={'TOOLSET': 'gcc', 'COMPILER': 'g++', 'CXXSTD': 'c++11', 'DRONE_JOB_UUID': '356a192b79'}, globalenv=globalenv),
|
|
linux_cxx("TOOLSET=clang COMPILER=clang++ CXXSTD=c++11 Job 2", "clang++", packages="", buildtype="boost", buildscript="drone", image=linuxglobalimage, environment={'TOOLSET': 'clang', 'COMPILER': 'clang++', 'CXXSTD': 'c++11', 'DRONE_JOB_UUID': 'da4b9237ba'}, globalenv=globalenv),
|
|
osx_cxx("TOOLSET=clang COMPILER=clang++ CXXSTD=c++11 Job 3", "clang++", packages="", buildtype="boost", buildscript="drone", xcode_version="9.4", environment={'TOOLSET': 'clang', 'COMPILER': 'clang++', 'CXXSTD': 'c++11', 'DRONE_JOB_UUID': '77de68daec'}, globalenv=globalenv),
|
|
]
|
|
|
|
# from https://github.com/boostorg/boost-ci
|
|
load("@boost_ci//ci/drone/:functions.star", "linux_cxx","windows_cxx","osx_cxx","freebsd_cxx")
|