Skip to content

Commit c0e3cc4

Browse files
committed
Merge commit '8da525b1177ae92151f78d793c990313c6930849' as 'third_party/cpp-taskflow'
2 parents ff1d901 + 8da525b commit c0e3cc4

File tree

3,352 files changed

+805286
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,352 files changed

+805286
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
image:
2+
- Visual Studio 2017
3+
clone_folder: c:\projects\source
4+
build_script:
5+
- cmd: >-
6+
mkdir build
7+
8+
cd build
9+
10+
cmake c:\projects\source -G "Visual Studio 15"
11+
12+
cmake --build .
13+
14+
ctest
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
benchmark/* linguist-vendored
2+
doc/* linguist-vendored
3+
image/* linguist-vendored
4+
3rd-party/* linguist-vendored
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
custom: https://www.paypal.com/paypalme2/twhuang/10
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Screenshots**
18+
If applicable, add screenshots to help explain your problem.
19+
20+
**Desktop (please complete the following information):**
21+
- OS: [e.g. iOS]
22+
- Browser [e.g. chrome, safari]
23+
- Version [e.g. 22]
24+
25+
**Additional context**
26+
Add any other context about the problem here.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Please describe your feature request.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
sudo: required
2+
3+
# distribution
4+
dist: xenial
5+
6+
# Enable C++ support
7+
language: cpp
8+
9+
# enable cache
10+
cache:
11+
directories:
12+
- ${TRAVIS_BUILD_DIR}/deps
13+
14+
# environment
15+
# ref 1: https://github.com/google/re2
16+
matrix:
17+
include:
18+
19+
# Linux g++-5
20+
- os: linux
21+
compiler: g++
22+
addons:
23+
apt:
24+
sources:
25+
- ubuntu-toolchain-r-test
26+
packages:
27+
- g++-5
28+
env:
29+
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
30+
31+
# Linux g++-6
32+
- os: linux
33+
compiler: g++
34+
addons:
35+
apt:
36+
sources:
37+
- ubuntu-toolchain-r-test
38+
packages:
39+
- g++-6
40+
env:
41+
- MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
42+
43+
# Linux g++-7
44+
- os: linux
45+
compiler: g++
46+
addons:
47+
apt:
48+
sources:
49+
- ubuntu-toolchain-r-test
50+
packages:
51+
- g++-7
52+
env:
53+
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
54+
55+
# Linux g++-8
56+
- os: linux
57+
compiler: g++
58+
addons:
59+
apt:
60+
sources:
61+
- ubuntu-toolchain-r-test
62+
packages:
63+
- g++-8
64+
env:
65+
- MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
66+
67+
# Linux g++-9
68+
- os: linux
69+
compiler: g++
70+
addons:
71+
apt:
72+
sources:
73+
- ubuntu-toolchain-r-test
74+
packages:
75+
- g++-9
76+
env:
77+
- MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
78+
79+
# Linux clang++6
80+
- os: linux
81+
compiler: clang++
82+
addons:
83+
apt:
84+
sources: ['ubuntu-toolchain-r-test']
85+
packages: ['clang-6.0', 'g++-7']
86+
env:
87+
- MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0"
88+
89+
# Linux clang++7
90+
- os: linux
91+
compiler: clang++
92+
addons:
93+
apt:
94+
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-7']
95+
packages: ['clang-7', 'g++-7']
96+
env:
97+
- MATRIX_EVAL="CC=clang-7 && CXX=clang++-7"
98+
99+
# Linux clang++8
100+
- os: linux
101+
compiler: clang++
102+
addons:
103+
apt:
104+
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-8']
105+
packages: ['clang-8', 'g++-8']
106+
env:
107+
- MATRIX_EVAL="CC=clang-8 && CXX=clang++-8"
108+
109+
## OSX
110+
#- os: osx
111+
# osx_image: xcode8
112+
113+
# install cmake 3.10
114+
before_install:
115+
- eval "${MATRIX_EVAL}"
116+
- wget -O cmake.sh https://cmake.org/files/v3.10/cmake-3.10.0-rc1-Linux-x86_64.sh
117+
- sudo sh cmake.sh --skip-license --exclude-subdir --prefix=/usr/local
118+
#- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
119+
120+
# Build steps
121+
script:
122+
- mkdir build
123+
- cd build
124+
- cmake ../
125+
- make
126+
- make test
127+

0 commit comments

Comments
 (0)