Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/address_san.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
name: Address Sanitizer
# Trigger on Push to the repository, regardless of the branch.
# For fine tune, You can add specific branches or tags.
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/apple_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@

name: Apple Clang

on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "Darwin 11.0 -std=c++${{matrix.cxxstd}}"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/clangtidy_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@

name: Clang tidy checks

on: [push]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
check:
name: Clang tidy Check
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/code_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,15 @@

name: "Code Format"

on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
format:
name: "Code Formatting Check"
Expand All @@ -21,4 +28,4 @@ jobs:
run: clang-format-10 -i examples/tensor/*.cpp test/tensor/*.cpp include/boost/numeric/ublas/tensor/*.hpp include/boost/numeric/ublas/tensor/*/*.hpp

- name: Check diff
run: git diff --exit-code HEAD
run: git diff --exit-code HEAD
14 changes: 11 additions & 3 deletions .github/workflows/linux_clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@
name: Linux Clang Release
# Trigger on Push to the repository, regardless of the branch.
# For fine tune, You can add specific branches or tags.
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'

jobs:
build:
name: "${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Expand Down Expand Up @@ -79,4 +87,4 @@ jobs:
run: |
cd $BOOST_ROOT
cd libs/numeric/ublas
$BOOST_ROOT/b2 -j 4 test/tensor toolset=clang cxxstd=${{matrix.config.cxxstd}} cxxflags="-O3"
$BOOST_ROOT/b2 -j 4 test/tensor toolset=clang cxxstd=${{matrix.config.cxxstd}} cxxflags="-O3"
11 changes: 9 additions & 2 deletions .github/workflows/linux_gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
name: Linux GCC Debug
# Trigger on Push to the repository, regardless of the branch.
# For fine tune, You can add specific branches or tags.
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/thread_san.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
name: Thread Sanitizer
# Trigger on Push to the repository, regardless of the branch.
# For fine tune, You can add specific branches or tags.
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/ub_san.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,15 @@
name: Undefined Behaviour Sanitizer
# Trigger on Push to the repository, regardless of the branch.
# For fine tune, You can add specific branches or tags.
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "${{matrix.config.cxx}} -std=c++${{matrix.config.cxxstd}}"
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/windows_msvc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@
# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)

name: "Windows MSVC"
on: [push, pull_request]

on:
push:
paths-ignore:
- '**.md'
- 'doc/**'
pull_request:
paths-ignore:
- '**.md'
- 'doc/**'
jobs:
build:
name: "${{matrix.config.version}} -std=c++${{matrix.config.cxxstd}}"
Expand Down Expand Up @@ -82,4 +89,4 @@ jobs:
cd %BOOST_ROOT%
cd libs\numeric\ublas
%BOOST_ROOT%\b2 -j 4 test/tensor toolset=%TOOLSET% cxxstd=${{matrix.config.cxxstd}} address-model=64