Bump ilammy/msvc-dev-cmd from 1.12.1 to 1.13.0 #86
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: MacOS Clang | |
env: | |
CMAKE_VERSION: 3.16.x | |
CMAKE_BUILD_TYPE: Release | |
CMAKE_BUILD_PREFIX: "${{ github.workspace }}/build" | |
on: | |
push: | |
pull_request: | |
jobs: | |
# Checkout apply clang-format and upload artifact | |
build: | |
name: "Build" | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup CMake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '${{env.CMAKE_VERSION}}' | |
- name: Configure | |
run: cmake -S ${{ github.workspace }} -B ${{ env.CMAKE_BUILD_PREFIX }} -D CMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -D BUILD_TESTS=OFF | |
- name: Build | |
run: cmake --build ${{ env.CMAKE_BUILD_PREFIX }} --config ${{ env.CMAKE_BUILD_TYPE }} --parallel 2 | |
- name: Run tests | |
working-directory: ${{ env.CMAKE_BUILD_PREFIX }} | |
run: ctest -C ${{ env.CMAKE_BUILD_TYPE }} -j2 -VV --output-on-failure |