Update fill function for CUDA matrix (#626) #1604
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: Mac | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
xcode_macos_12: | |
runs-on: macos-12 | |
strategy: | |
matrix: | |
# all available versions of xcode: https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
xcode: ['14.1'] | |
build_type: [Release] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Cmake | |
run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
- name: Build | |
run: cmake --build build --parallel 10 | |
- name: Run tests | |
run: | | |
cd build | |
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 | |
xcode_macos_13: | |
runs-on: macos-13 | |
continue-on-error: true | |
strategy: | |
matrix: | |
# all available versions of xcode: https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode | |
xcode: ['14.1', '15.0'] | |
build_type: [Release] | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Cmake | |
run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
- name: Build | |
run: cmake --build build --parallel 10 | |
- name: Run tests | |
run: | | |
cd build | |
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 | |
macos_lateset: | |
runs-on: macos-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
compiler: | |
- { cpp: g++-14, c: gcc-14} | |
- { cpp: g++-12, c: gcc-12} | |
- { cpp: clang++, c: clang} | |
build_type: [Release] | |
env: | |
CC: ${{ matrix.compiler.c }} | |
CXX: ${{ matrix.compiler.cpp }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Cmake | |
run: cmake -S . -B build -D MICM_ENABLE_PROFILE=ON -D CMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
- name: Build | |
run: cmake --build build --parallel 10 | |
- name: Run tests | |
run: | | |
cd build | |
ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure . --verbose -j 10 |