more version bumps for workflows #218
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: ${{matrix.os}}/${{matrix.build-type}} | |
runs-on: ${{matrix.runs-on}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Make build directory | |
run: cmake -E make_directory build | |
- name: Configure | |
working-directory: build | |
run: | | |
cmake .. ` | |
-DSOURCE_URL=https://github.com/${{github.repository}} ` | |
-DSOURCE_REF=${{github.sha}} ` | |
-DCMAKE_BUILD_TYPE=${{matrix.build-type}} ` | |
-DCMAKE_OSX_ARCHITECTURES=${{matrix.arch}} ` | |
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.11" ` | |
"-DCMAKE_INSTALL_PREFIX=${{runner.temp}}/install" | |
shell: pwsh | |
- name: Compile | |
working-directory: build | |
run: cmake --build . --config ${{matrix.build-type}} --parallel | |
- name: Run tests | |
if: matrix.arch != 'arm64' | |
working-directory: build | |
run: ctest -C ${{matrix.build-type}} --output-on-failure | |
- name: Install | |
working-directory: build | |
run: cmake --install . --config ${{matrix.build-type}} | |
- name: Test installation | |
working-directory: build | |
run: cmake --build . --target install_test --config ${{matrix.build-type}} | |
- name: build and install example | |
run: | | |
cmake -E make_directory example/build | |
cd example/build | |
cmake .. -DCMAKE_INSTALL_PREFIX=${{runner.temp}}/example-install | |
cmake --build . --config ${{matrix.build-type}} --parallel | |
cmake --install . --config ${{matrix.build-type}} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows, macos-arm64, macos-x86_64, linux] | |
build-type: [Release, Debug] | |
include: | |
- os: windows | |
runs-on: windows-latest | |
- os: macos-arm64 | |
arch: arm64 | |
runs-on: macos-latest | |
- os: macos-x86_64 | |
arch: x86_64 | |
runs-on: macos-latest | |
- os: linux | |
runs-on: ubuntu-20.04 | |
upload-cmake-file: | |
needs: build | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure | |
run: | | |
cmake . ` | |
-DSOURCE_URL=https://github.com/${{github.repository}} ` | |
-DSOURCE_REF=${{github.sha}} | |
- name: Upload StreamDeckSDK.cmake | |
uses: actions/upload-artifact@v4 | |
with: | |
name: StreamDeckSDK.cmake | |
path: StreamDeckSDK.cmake |