-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from ashtum/pr/setup-repo
Repository setup
- Loading branch information
Showing
48 changed files
with
75,334 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Copyright 2019 - 2021 Alexander Grund | ||
# Distributed under the Boost Software License, Version 1.0. | ||
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) | ||
# | ||
# Sample codecov configuration file. Edit as required | ||
|
||
codecov: | ||
max_report_age: off | ||
require_ci_to_pass: yes | ||
notify: | ||
# Increase this if you have multiple coverage collection jobs | ||
after_n_builds: 1 | ||
wait_for_ci: yes | ||
|
||
# Change how pull request comments look | ||
comment: | ||
layout: "reach,diff,flags,files,footer" | ||
|
||
# Ignore specific files or folders. Glob patterns are supported. | ||
# See https://docs.codecov.com/docs/ignoring-paths | ||
ignore: | ||
- extra/* | ||
- extra/**/* | ||
- test/* | ||
- test/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Use, modification, and distribution are | ||
# subject to the Boost Software License, Version 1.0. (See accompanying | ||
# file LICENSE.txt) | ||
# | ||
# Copyright Rene Rivera 2020. | ||
# Copyright Alan de Freitas 2022. | ||
|
||
# For Drone CI we use the Starlark scripting language to reduce duplication. | ||
# As the yaml syntax for Drone CI is rather limited. | ||
# | ||
# | ||
|
||
def main(ctx): | ||
return generate( | ||
# Compilers | ||
['gcc >=5.0', | ||
'clang >=3.8', | ||
'msvc >=14.1', | ||
'arm64-gcc latest', | ||
's390x-gcc latest', | ||
'apple-clang *', | ||
'arm64-clang latest', | ||
's390x-clang latest', | ||
# 'x86-msvc latest' | ||
], | ||
# Standards | ||
'>=11', | ||
packages=['zlib1g', 'zlib1g-dev']) | ||
|
||
|
||
# from https://github.com/boostorg/boost-ci | ||
load("@boost_ci//ci/drone/:functions.star", "linux_cxx", "windows_cxx", "osx_cxx", "freebsd_cxx") | ||
load("@url//:.drone.star", "generate") |
Oops, something went wrong.