Skip to content

Commit

Permalink
Updated github actions matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidAce committed Jun 5, 2021
1 parent c45e680 commit 76a801e
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 49 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/macos10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
include:
- { compiler: cl, shared: OFF, conda: OFF, source: conan }
- { compiler: cl, shared: OFF, conda: OFF, source: cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: ON , source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: conan }
- { compiler: cl, shared: OFF, conda: OFF, source: cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: ON , source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: fetch }
- { compiler: cl, shared: OFF, conda: OFF, source: find }
- { compiler: cl, shared: OFF, conda: ON , source: find }
- { compiler: cl, shared: ON, conda: OFF, source: conan }
- { compiler: cl, shared: ON, conda: OFF, source: cmake }
- { compiler: cl, shared: ON, conda: OFF, source: fetch }
- { compiler: cl, shared: ON, conda: OFF, source: find }
- { compiler: cl, shared: ON, conda: ON , source: find }

steps:
- uses: actions/checkout@v2
Expand Down
36 changes: 20 additions & 16 deletions .github/workflows/ubuntu16.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,26 @@ jobs:
fail-fast: true # True stops all on first error. Stick to false when debugging
matrix:
include:
- { compiler: gcc, conda : OFF, shared: OFF, source: cmake }
- { compiler: gcc, conda : OFF, shared: ON , source: cmake }
- { compiler: gcc, conda : OFF, shared: OFF, source: conan }
- { compiler: gcc, conda : OFF, shared: ON , source: conan }
- { compiler: gcc, conda : OFF, shared: OFF, source: find-or-cmake }
- { compiler: gcc, conda : OFF, shared: ON , source: find-or-cmake }
- { compiler: gcc, conda : ON , shared: OFF, source: find-or-cmake }
- { compiler: gcc, conda : ON , shared: ON , source: find-or-cmake }
- { compiler: clang, conda : OFF, shared: OFF, source: cmake }
- { compiler: clang, conda : OFF, shared: ON , source: cmake }
- { compiler: clang, conda : OFF, shared: OFF, source: conan }
- { compiler: clang, conda : OFF, shared: ON , source: conan }
- { compiler: clang, conda : OFF, shared: OFF, source: find-or-cmake }
- { compiler: clang, conda : OFF, shared: ON , source: find-or-cmake }
- { compiler: clang, conda : ON , shared: OFF, source: find-or-cmake }
- { compiler: clang, conda : ON , shared: ON , source: find-or-cmake }
- { compiler: gcc, shared: OFF, conda: OFF, source: cmake }
- { compiler: gcc, shared: OFF, conda: OFF, source: conan }
- { compiler: gcc, shared: OFF, conda: OFF, source: fetch }
- { compiler: gcc, shared: OFF, conda: OFF, source: find }
- { compiler: gcc, shared: OFF, conda: ON, source: find }
- { compiler: gcc, shared: ON, conda: OFF, source: cmake }
- { compiler: gcc, shared: ON, conda: OFF, source: conan }
- { compiler: gcc, shared: ON, conda: OFF, source: fetch }
- { compiler: gcc, shared: ON, conda: OFF, source: find }
- { compiler: gcc, shared: ON, conda: ON , source: find }
- { compiler: clang, shared: OFF, conda: OFF, source: cmake }
- { compiler: clang, shared: OFF, conda: OFF, source: conan }
- { compiler: clang, shared: OFF, conda: OFF, source: fetch }
- { compiler: clang, shared: OFF, conda: OFF, source: find }
- { compiler: clang, shared: OFF, conda: ON, source: find }
- { compiler: clang, shared: ON, conda: OFF, source: cmake }
- { compiler: clang, shared: ON, conda: OFF, source: conan }
- { compiler: clang, shared: ON, conda: OFF, source: fetch }
- { compiler: clang, shared: ON, conda: OFF, source: find }
- { compiler: clang, shared: ON, conda: ON , source: find }
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
Expand Down
42 changes: 21 additions & 21 deletions .github/workflows/ubuntu20.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,29 +15,29 @@ jobs:
env:
cache-name: cache-${{ matrix.compiler }}-conda-[${{ matrix.conda }}]-shared-[${{ matrix.shared }}]-${{ matrix.source }}
strategy:
fail-fast: false # True stops all on first error. Stick to false when debugging
fail-fast: true # True stops all on first error. Stick to false when debugging
matrix:
include:
- { compiler: gcc, conda: OFF, shared: OFF, source: cmake }
- { compiler: gcc, conda: OFF, shared: ON , source: cmake }
- { compiler: gcc, conda: OFF, shared: OFF, source: conan }
- { compiler: gcc, conda: OFF, shared: ON , source: conan }
- { compiler: gcc, conda: OFF, shared: OFF, source: fetch }
- { compiler: gcc, conda: OFF, shared: ON , source: fetch }
- { compiler: gcc, conda: OFF, shared: OFF, source: find }
- { compiler: gcc, conda: OFF, shared: ON , source: find }
- { compiler: gcc, conda: ON , shared: OFF, source: find }
- { compiler: gcc, conda: ON , shared: ON , source: find }
- { compiler: clang, conda: OFF, shared: OFF, source: cmake }
- { compiler: clang, conda: OFF, shared: ON , source: cmake }
- { compiler: clang, conda: OFF, shared: OFF, source: conan }
- { compiler: clang, conda: OFF, shared: ON , source: conan }
- { compiler: clang, conda: OFF, shared: OFF, source: fetch }
- { compiler: clang, conda: OFF, shared: ON , source: fetch }
- { compiler: clang, conda: OFF, shared: OFF, source: find }
- { compiler: clang, conda: OFF, shared: ON , source: find }
- { compiler: clang, conda: ON , shared: OFF, source: find }
- { compiler: clang, conda: ON , shared: ON , source: find }
- { compiler: gcc, shared: OFF, conda: OFF, source: cmake }
- { compiler: gcc, shared: OFF, conda: OFF, source: conan }
- { compiler: gcc, shared: OFF, conda: OFF, source: fetch }
- { compiler: gcc, shared: OFF, conda: OFF, source: find }
- { compiler: gcc, shared: OFF, conda: ON, source: find }
- { compiler: gcc, shared: ON, conda: OFF, source: cmake }
- { compiler: gcc, shared: ON, conda: OFF, source: conan }
- { compiler: gcc, shared: ON, conda: OFF, source: fetch }
- { compiler: gcc, shared: ON, conda: OFF, source: find }
- { compiler: gcc, shared: ON, conda: ON , source: find }
- { compiler: clang, shared: OFF, conda: OFF, source: cmake }
- { compiler: clang, shared: OFF, conda: OFF, source: conan }
- { compiler: clang, shared: OFF, conda: OFF, source: fetch }
- { compiler: clang, shared: OFF, conda: OFF, source: find }
- { compiler: clang, shared: OFF, conda: ON, source: find }
- { compiler: clang, shared: ON, conda: OFF, source: cmake }
- { compiler: clang, shared: ON, conda: OFF, source: conan }
- { compiler: clang, shared: ON, conda: OFF, source: fetch }
- { compiler: clang, shared: ON, conda: OFF, source: find }
- { compiler: clang, shared: ON, conda: ON , source: find }

steps:
- uses: actions/checkout@v2
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/windows10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ jobs:
include:
- { compiler: cl, shared: OFF, conda: OFF, source: conan }
- { compiler: cl, shared: OFF, conda: OFF, source: cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: ON , source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: conan }
- { compiler: cl, shared: OFF, conda: OFF, source: cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: ON , source: find-or-cmake }
- { compiler: cl, shared: OFF, conda: OFF, source: fetch }
- { compiler: cl, shared: OFF, conda: OFF, source: find }
- { compiler: cl, shared: ON, conda: OFF, source: conan }
- { compiler: cl, shared: ON, conda: OFF, source: cmake }
- { compiler: cl, shared: ON, conda: OFF, source: fetch }
- { compiler: cl, shared: ON, conda: OFF, source: find }
- { compiler: cl, shared: OFF, conda: ON, source: find }
- { compiler: cl, shared: ON, conda: ON, source: find }

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 76a801e

Please sign in to comment.