-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58dc748
commit f01855e
Showing
10 changed files
with
337 additions
and
51 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Linux builds | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- githubactions* | ||
- feature/** | ||
- fix/** | ||
- pr/** | ||
jobs: | ||
build-test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [ubuntu-latest] | ||
compiler: [g++-12, g++-13] | ||
|
||
env: | ||
CONAN_USER_HOME: "${{ github.workspace }}/release/" | ||
CONAN_USER_HOME_SHORT: "${{ github.workspace }}/release/short" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.compiler }} | ||
|
||
- name: Using the builtin GitHub Cache Action for .conan | ||
id: cache-conan | ||
uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-conan-modules | ||
with: | ||
path: ${{ env.CONAN_USER_HOME }} | ||
key: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
restore-keys: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
|
||
- name: Conan installation | ||
id: conan | ||
uses: turtlebrowser/[email protected] | ||
|
||
- name: Configure, Build, and Test Project | ||
uses: threeal/[email protected] | ||
with: | ||
run-build: true | ||
run-test: true | ||
options: CMAKE_PROJECT_TOP_LEVEL_INCLUDES=cmake/conan_provider.cmake CMAKE_BUILD_TYPE=Release CMAKE_CXX_COMPILER_LAUNCHER=ccache | ||
|
||
env: | ||
CXX: ${{ matrix.compiler }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: MacOs builds | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- githubactions* | ||
- feature/** | ||
- fix/** | ||
- pr/** | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [macos-13] | ||
compiler: ['15.0.1', '14.3.1', '14.2'] | ||
|
||
env: | ||
CONAN_USER_HOME: "${{ github.workspace }}/release/" | ||
CONAN_USER_HOME_SHORT: "${{ github.workspace }}/release/short" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.compiler }} | ||
|
||
- name: Using the builtin GitHub Cache Action for .conan | ||
id: cache-conan | ||
uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-conan-modules | ||
with: | ||
path: ${{ env.CONAN_USER_HOME }} | ||
key: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
restore-keys: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
|
||
- uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: ${{ matrix.compiler }} | ||
|
||
- name: Conan installation | ||
id: conan | ||
uses: turtlebrowser/[email protected] | ||
|
||
- name: Configure, Build, and Test Project | ||
uses: threeal/[email protected] | ||
with: | ||
run-build: true | ||
run-test: true | ||
options: CMAKE_PROJECT_TOP_LEVEL_INCLUDES=cmake/conan_provider.cmake CMAKE_BUILD_TYPE=Release CMAKE_CXX_COMPILER_LAUNCHER=ccache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: MSVC builds | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- githubactions* | ||
- feature/** | ||
- fix/** | ||
- pr/** | ||
|
||
jobs: | ||
build-test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: true | ||
matrix: | ||
os: [windows-latest] | ||
|
||
env: | ||
CONAN_USER_HOME: "${{ github.workspace }}/release/" | ||
CONAN_USER_HOME_SHORT: "${{ github.workspace }}/release/short" | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ matrix.os }}-${{ matrix.compiler }} | ||
|
||
- name: Using the builtin GitHub Cache Action for .conan | ||
id: cache-conan | ||
uses: actions/cache@v1 | ||
env: | ||
cache-name: cache-conan-modules | ||
with: | ||
path: ${{ env.CONAN_USER_HOME }} | ||
key: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
restore-keys: ${{ runner.os }}-builder-${{ env.cache-name }} | ||
|
||
- name: Conan installation | ||
id: conan | ||
uses: turtlebrowser/[email protected] | ||
|
||
- uses: TheMrMilchmann/setup-msvc-dev@v3 | ||
with: | ||
arch: x64 | ||
toolset: ${{matrix.compiler}} | ||
|
||
- name: Configure, Build, and Test Project | ||
uses: threeal/[email protected] | ||
with: | ||
run-build: true | ||
run-test: true | ||
options: CMAKE_PROJECT_TOP_LEVEL_INCLUDES=cmake/conan_provider.cmake CMAKE_BUILD_TYPE=Release CMAKE_CXX_COMPILER_LAUNCHER=ccache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.