-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DRAFT 220 - Test initial Github workflow
- Loading branch information
Showing
4 changed files
with
69 additions
and
730 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,68 @@ | ||
# This workflow is for a CMake project running on multiple platforms. | ||
name: CMake on multiple platforms | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
name: ${{ matrix.target_arch }} ${{ matrix.os }} (${{ matrix.c_compiler }}) | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
# Deliver the feedback for all matrix combinations. | ||
fail-fast: false | ||
|
||
matrix: | ||
target_arch: [ aarch64, amd64, armv7, ppc64le, riscv64, s390x ] | ||
os: [ macos-latest, ubuntu-latest, windows-latest ] | ||
c_compiler: [ cl, clang, gcc ] | ||
build_type: [ Release ] | ||
exclude: | ||
- os: macos-latest | ||
c_compiler: cl | ||
- os: macos-latest | ||
c_compiler: gcc | ||
- os: macos-latest | ||
target_arch: armv7 | ||
- os: macos-latest | ||
target_arch: ppc64le | ||
- os: macos-latest | ||
target_arch: riscv64 | ||
- os: macos-latest | ||
target_arch: s390x | ||
- os: ubuntu-latest | ||
c_compiler: cl | ||
- os: windows-latest | ||
target_arch: ppc64le | ||
- os: windows-latest | ||
target_arch: riscv64 | ||
- os: windows-latest | ||
target_arch: s390x | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set reusable strings | ||
# Turn repeated input strings into step outputs. | ||
id: strings | ||
shell: bash | ||
run: | | ||
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" | ||
- name: Configure CMake | ||
# Configure CMake in a 'build' subdirectory. | ||
run: > | ||
cmake -B ${{ steps.strings.outputs.build-output-dir }} | ||
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | ||
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | ||
-Dbuild_tests=ON | ||
-S ${{ github.workspace }} | ||
- name: Build | ||
# Build the code with the given configuration. | ||
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} | ||
|
||
- name: Test | ||
working-directory: ${{ steps.strings.outputs.build-output-dir }} | ||
# Execute tests defined by the CMake configuration. | ||
run: ctest --build-config ${{ matrix.build_type }} |
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 |
---|---|---|
|
@@ -26,6 +26,7 @@ Makefile | |
*.pdb | ||
*.so | ||
|
||
/build/ | ||
/out/ | ||
|
||
/src/.deps/ | ||
|
Oops, something went wrong.