Merge pull request #21 from gismo/warning_fixes #26
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
name: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: RelWithDebInfo | |
jobs: | |
build: | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@master | |
with: | |
repository: gismo/gismo | |
ref: stable | |
path: ./gismo | |
- uses: actions/checkout@master | |
with: | |
repository: gismo/gsKLShell | |
ref: main | |
path: ./gismo/optional/gsKLShell | |
- uses: actions/checkout@master | |
with: | |
repository: gismo/gsElasticity | |
ref: master | |
path: ./gismo/optional/gsElasticity | |
- uses: actions/checkout@master | |
with: | |
path: ./gismo/optional/${{ github.event.repository.name }} | |
#token: ${{ secrets.GH_PAT }} | |
- name: "Run for ${{ matrix.os }}" | |
shell: bash | |
working-directory: ${{runner.workspace}} | |
# Add gsStructuralAnalysis-solvers to unittests?? On simple test XML. Needs gsUnstructuredSplines for some multi-patch solvers | |
run: ctest -S ${{ github.event.repository.name }}/gismo/cmake/ctest_script.cmake -D CTEST_BUILD_NAME="${{ github.event.repository.name }}_actions_$GITHUB_RUN_NUMBER" -D CTEST_CONFIGURATION_TYPE=RelWithDebInfo -D LABELS_FOR_SUBPROJECTS="gsStructuralAnalysis-tutorials;unittests" -D CTEST_SITE="${{ matrix.os }}_[actions]" -D CMAKE_ARGS="-DCMAKE_BUILD_TYPE=$BUILD_TYPE;-DCMAKE_CXX_STANDARD=11;-DGISMO_WITH_XDEBUG=ON;-DGISMO_BUILD_UNITTESTS=ON" -D GISMO_OPTIONAL='gsKLShell\\;gsElasticity\\;${{ github.event.repository.name }}' -Q |