File tree 9 files changed +85
-21
lines changed
9 files changed +85
-21
lines changed Original file line number Diff line number Diff line change 5
5
name : Address Sanitizer
6
6
# Trigger on Push to the repository, regardless of the branch.
7
7
# For fine tune, You can add specific branches or tags.
8
- on : [push, pull_request]
9
-
8
+ on :
9
+ push :
10
+ paths-ignore :
11
+ - ' **.md'
12
+ - ' doc/**'
13
+ pull_request :
14
+ paths-ignore :
15
+ - ' **.md'
16
+ - ' doc/**'
10
17
jobs :
11
18
build :
12
19
name : " ${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Original file line number Diff line number Diff line change 4
4
5
5
name : Apple Clang
6
6
7
- on : [push, pull_request]
8
-
7
+ on :
8
+ push :
9
+ paths-ignore :
10
+ - ' **.md'
11
+ - ' doc/**'
12
+ pull_request :
13
+ paths-ignore :
14
+ - ' **.md'
15
+ - ' doc/**'
9
16
jobs :
10
17
build :
11
18
name : " Darwin 11.0 -std=c++${{matrix.cxxstd}}"
Original file line number Diff line number Diff line change 4
4
5
5
name : Clang tidy checks
6
6
7
- on : [push]
8
-
7
+ on :
8
+ push :
9
+ paths-ignore :
10
+ - ' **.md'
11
+ - ' doc/**'
12
+ pull_request :
13
+ paths-ignore :
14
+ - ' **.md'
15
+ - ' doc/**'
9
16
jobs :
10
17
check :
11
18
name : Clang tidy Check
Original file line number Diff line number Diff line change 4
4
5
5
name : " Code Format"
6
6
7
- on : [push, pull_request]
8
-
7
+ on :
8
+ push :
9
+ paths-ignore :
10
+ - ' **.md'
11
+ - ' doc/**'
12
+ pull_request :
13
+ paths-ignore :
14
+ - ' **.md'
15
+ - ' doc/**'
9
16
jobs :
10
17
format :
11
18
name : " Code Formatting Check"
21
28
run : clang-format-10 -i examples/tensor/*.cpp test/tensor/*.cpp include/boost/numeric/ublas/tensor/*.hpp include/boost/numeric/ublas/tensor/*/*.hpp
22
29
23
30
- name : Check diff
24
- run : git diff --exit-code HEAD
31
+ run : git diff --exit-code HEAD
Original file line number Diff line number Diff line change 5
5
name : Linux Clang Release
6
6
# Trigger on Push to the repository, regardless of the branch.
7
7
# For fine tune, You can add specific branches or tags.
8
- on : [push, pull_request]
9
-
8
+ on :
9
+ push :
10
+ paths-ignore :
11
+ - ' **.md'
12
+ - ' doc/**'
13
+ pull_request :
14
+ paths-ignore :
15
+ - ' **.md'
16
+ - ' doc/**'
17
+
10
18
jobs :
11
19
build :
12
20
name : " ${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
79
87
run : |
80
88
cd $BOOST_ROOT
81
89
cd libs/numeric/ublas
82
- $BOOST_ROOT/b2 -j 4 test/tensor toolset=clang cxxstd=${{matrix.config.cxxstd}} cxxflags="-O3"
90
+ $BOOST_ROOT/b2 -j 4 test/tensor toolset=clang cxxstd=${{matrix.config.cxxstd}} cxxflags="-O3"
Original file line number Diff line number Diff line change 5
5
name : Linux GCC Debug
6
6
# Trigger on Push to the repository, regardless of the branch.
7
7
# For fine tune, You can add specific branches or tags.
8
- on : [push, pull_request]
9
-
8
+ on :
9
+ push :
10
+ paths-ignore :
11
+ - ' **.md'
12
+ - ' doc/**'
13
+ pull_request :
14
+ paths-ignore :
15
+ - ' **.md'
16
+ - ' doc/**'
10
17
jobs :
11
18
build :
12
19
name : " ${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Original file line number Diff line number Diff line change 5
5
name : Thread Sanitizer
6
6
# Trigger on Push to the repository, regardless of the branch.
7
7
# For fine tune, You can add specific branches or tags.
8
- on : [push, pull_request]
9
-
8
+ on :
9
+ push :
10
+ paths-ignore :
11
+ - ' **.md'
12
+ - ' doc/**'
13
+ pull_request :
14
+ paths-ignore :
15
+ - ' **.md'
16
+ - ' doc/**'
10
17
jobs :
11
18
build :
12
19
name : " ${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Original file line number Diff line number Diff line change 5
5
name : Undefined Behaviour Sanitizer
6
6
# Trigger on Push to the repository, regardless of the branch.
7
7
# For fine tune, You can add specific branches or tags.
8
- on : [push, pull_request]
9
-
8
+ on :
9
+ push :
10
+ paths-ignore :
11
+ - ' **.md'
12
+ - ' doc/**'
13
+ pull_request :
14
+ paths-ignore :
15
+ - ' **.md'
16
+ - ' doc/**'
10
17
jobs :
11
18
build :
12
19
name : " ${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Original file line number Diff line number Diff line change 3
3
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)
4
4
5
5
name : " Windows MSVC"
6
- on : [push, pull_request]
7
-
6
+ on :
7
+ push :
8
+ paths-ignore :
9
+ - ' **.md'
10
+ - ' doc/**'
11
+ pull_request :
12
+ paths-ignore :
13
+ - ' **.md'
14
+ - ' doc/**'
8
15
jobs :
9
16
build :
10
17
name : " ${{matrix.config.version}} -std=c++${{matrix.config.cxxstd}}"
82
89
cd %BOOST_ROOT%
83
90
cd libs\numeric\ublas
84
91
%BOOST_ROOT%\b2 -j 4 test/tensor toolset=%TOOLSET% cxxstd=${{matrix.config.cxxstd}} address-model=64
85
-
92
+
You can’t perform that action at this time.
0 commit comments