Example userdata: clean function error return #945
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 for CMake | |
on: | |
push: | |
paths: | |
- sc | |
- "**/CMakeLists.txt" | |
- "**.cmake" | |
- "**.cmake.in" | |
- "**.c" | |
- "**.h" | |
- "**.h.in" | |
- ".github/workflows/ci_cmake.yml" | |
pull_request: | |
release: | |
types: [published] | |
env: | |
CTEST_PARALLEL_LEVEL: 0 | |
CMAKE_BUILD_PARALLEL_LEVEL: 4 | |
CTEST_NO_TESTS_ACTION: "error" | |
CMAKE_INSTALL_PREFIX: ~/local | |
CMAKE_PREFIX_PATH: ~/local | |
# Due to busy file system problems on the CI runners, we deactivate the file | |
# checks in the CI. | |
P4EST_CI_CONFIG_OPT: -DP4EST_ENABLE_FILE_CHECKS=OFF -DSC_ENABLE_FILE_CHECKS=OFF | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
name: Linux mpi=${{ matrix.mpi }} CC=${{ matrix.cc }} shared=${{ matrix.shared }} | |
timeout-minutes: 60 | |
strategy: | |
fail-fast: false | |
matrix: | |
cc: [gcc] | |
shared: [false] | |
mpi: [mpich] | |
include: | |
- cc: gcc | |
shared: true | |
mpi: mpich | |
- cc: gcc | |
shared: false | |
mpi: openmpi | |
env: | |
CC: ${{ matrix.cc }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout source code | |
- name: Install deps | |
uses: ./.github/workflows/composite-deps | |
- name: CMake build-test-install-package | |
uses: ./.github/workflows/composite-unix | |
- name: Upload package | |
uses: ./.github/workflows/composite-pkg | |
mac: | |
runs-on: macos-latest | |
name: macOS CC=${{ matrix.cc }} shared=${{ matrix.shared }} | |
timeout-minutes: 60 | |
strategy: | |
matrix: | |
cc: [clang] | |
shared: [false, true] | |
env: | |
HOMEBREW_NO_INSTALL_CLEANUP: 1 | |
CC: ${{ matrix.cc }} | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout source code | |
- name: Install deps | |
uses: ./.github/workflows/composite-deps | |
- name: CMake build-test-install-package | |
uses: ./.github/workflows/composite-unix | |
- name: Upload package | |
uses: ./.github/workflows/composite-pkg | |
windows: | |
runs-on: windows-latest | |
name: Windows | |
timeout-minutes: 60 | |
env: | |
CMAKE_GENERATOR: "MinGW Makefiles" | |
steps: | |
- uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: >- | |
mingw-w64-x86_64-zlib | |
- name: Put MSYS2_MinGW64 on PATH | |
run: echo "${{ runner.temp }}/msys64/mingw64/bin/" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
- uses: actions/checkout@v4 | |
name: Checkout source code | |
- run: echo "CMAKE_INSTALL_PREFIX=$HOME/local" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- run: echo "CMAKE_PREFIX_PATH=$HOME/local" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
- run: echo "ZLIB_ROOT=$env:RUNNER_TEMP/msys64/mingw64" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | |
# Windows MPI is shaky in general on GitHub Actions, so we don't use it | |
- name: CMake configure without MPI | |
run: cmake --preset default -Dmpi:BOOL=no $env:P4EST_CI_CONFIG_OPT | |
- name: CMake build | |
run: cmake --build --preset default | |
- name: CMake self-tests | |
run: ctest --preset default | |
- name: install p4est CMake package | |
run: cmake --install build | |
- name: CMake configure examples | |
run: cmake -B example/build -S example | |
- name: CMake build examples | |
run: cmake --build example/build | |
- name: Create package | |
if: github.event.action == 'published' | |
run: cpack --config build/CPackConfig.cmake | |
- name: Upload package | |
uses: ./.github/workflows/composite-pkg |