Skip to content

Commit

Permalink
Merge pull request #1 from ashtum/pr/setup-repo
Browse files Browse the repository at this point in the history
Repository setup
  • Loading branch information
ashtum authored Jun 7, 2024
2 parents 8556e2f + 85c055b commit 5686e41
Show file tree
Hide file tree
Showing 48 changed files with 75,334 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .codecov.yml
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/**/*
33 changes: 33 additions & 0 deletions .drone.star
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")
Loading

0 comments on commit 5686e41

Please sign in to comment.