mirror of
https://github.com/boostorg/boost-ci.git
synced 2026-02-13 00:12:10 +00:00
Enable AppVeyor, Azure Pipelines and Travis CI for self. Add test/ with basic health checks to be run on supported CI-s. Add fake library header for depinst.py. Disable codecov.io for boost-ci self-check on Travis CI. Requires change in #35
14 lines
348 B
C++
14 lines
348 B
C++
//
|
|
// Copyright (c) 2020 Mateusz Loskot <mateusz@loskot.net>
|
|
//
|
|
// Use, modification and distribution is subject to the Boost Software License,
|
|
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
int main()
|
|
{
|
|
return boost::report_errors();
|
|
}
|