|
- name: cmake
-
- on:
- push:
- branches:
- - '*'
- pull_request:
- branches:
- - '*'
-
- env:
- BUILD_TYPE: Release
-
- jobs:
- ubuntu-22-04:
- strategy:
- matrix:
- target: [linux-arm64, linux-armhf, linux-i686, linux-x86_64, win32, win64, pluginval]
- runs-on: ubuntu-22.04
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - uses: distrho/dpf-cmake-action@v1
- with:
- dpf_path: .
- suffix: _22_04
- target: ${{ matrix.target }}
-
- ubuntu-24-04:
- strategy:
- matrix:
- target: [linux-arm64, linux-armhf, linux-x86_64, pluginval]
- runs-on: ubuntu-24.04
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - uses: distrho/dpf-cmake-action@v1
- with:
- dpf_path: .
- suffix: _24_04
- target: ${{ matrix.target }}
-
- macos-12:
- strategy:
- matrix:
- target: [macos-intel, macos-universal, macos-10.15]
- runs-on: macos-12
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - uses: distrho/dpf-cmake-action@v1
- with:
- dpf_path: .
- suffix: _12
- target: ${{ matrix.target }}
-
- macos-13:
- strategy:
- matrix:
- target: [macos-intel, macos-universal, macos-10.15]
- runs-on: macos-13
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - uses: distrho/dpf-cmake-action@v1
- with:
- dpf_path: .
- suffix: _13
- target: ${{ matrix.target }}
-
- macos-14:
- strategy:
- matrix:
- target: [macos-intel, macos-universal, macos-10.15]
- runs-on: macos-14
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - uses: distrho/dpf-cmake-action@v1
- with:
- dpf_path: .
- suffix: _14
- target: ${{ matrix.target }}
-
- cmake_win32:
- runs-on: windows-2019
- steps:
- - name: Set environment
- run: |
- echo "release_arch=Win32" >> "${Env:GITHUB_ENV}"
- echo "vcpkg_triplet=x86-windows-static" >> "${Env:GITHUB_ENV}"
- echo "vcpkg_git_commit_id=a3db16a4475b963cacf0260068c497fb72c8f3c0" >> "${Env:GITHUB_ENV}"
- - name: Restore from cache and install vcpkg
- uses: lukka/run-vcpkg@v6
- with:
- setupOnly: true
- vcpkgTriplet: ${{env.vcpkg_triplet}}
- vcpkgGitCommitId: ${{env.vcpkg_git_commit_id}}
- #- name: Install packages
- # run: |
- # & "${Env:VCPKG_ROOT}/vcpkg" install "cairo:${Env:vcpkg_triplet}"
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - name: Create Build Environment
- working-directory: ${{runner.workspace}}
- run: cmake -E make_directory build
- - name: Configure CMake
- working-directory: ${{runner.workspace}}/build
- run: |
- cmake "${Env:GITHUB_WORKSPACE}" -G"Visual Studio 16 2019" -A"${Env:release_arch}" -DCMAKE_BUILD_TYPE="${Env:BUILD_TYPE}" -DVCPKG_TARGET_TRIPLET="${Env:vcpkg_triplet}" -DCMAKE_TOOLCHAIN_FILE="${Env:VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
- - name: Build all
- working-directory: ${{runner.workspace}}/build
- run: cmake --build . --config "${Env:BUILD_TYPE}" -j 2
- - name: Show built files
- working-directory: ${{runner.workspace}}/build/bin
- run: tree
- - uses: actions/upload-artifact@v2
- with:
- name: Win32 artifacts
- path: ${{runner.workspace}}/build/bin/
-
- cmake_win64:
- runs-on: windows-2019
- steps:
- - name: Set environment
- run: |
- echo "release_arch=x64" >> "${Env:GITHUB_ENV}"
- echo "vcpkg_triplet=x64-windows-static" >> "${Env:GITHUB_ENV}"
- echo "vcpkg_git_commit_id=a3db16a4475b963cacf0260068c497fb72c8f3c0" >> "${Env:GITHUB_ENV}"
- - name: Restore from cache and install vcpkg
- uses: lukka/run-vcpkg@v6
- with:
- setupOnly: true
- vcpkgTriplet: ${{env.vcpkg_triplet}}
- vcpkgGitCommitId: ${{env.vcpkg_git_commit_id}}
- #- name: Install packages
- # run: |
- # & "${Env:VCPKG_ROOT}/vcpkg" install "cairo:${Env:vcpkg_triplet}"
- - uses: actions/checkout@v4
- with:
- submodules: recursive
- - name: Create Build Environment
- working-directory: ${{runner.workspace}}
- run: cmake -E make_directory build
- - name: Configure CMake
- working-directory: ${{runner.workspace}}/build
- run: |
- cmake "${Env:GITHUB_WORKSPACE}" -G"Visual Studio 16 2019" -A"${Env:release_arch}" -DCMAKE_BUILD_TYPE="${Env:BUILD_TYPE}" -DVCPKG_TARGET_TRIPLET="${Env:vcpkg_triplet}" -DCMAKE_TOOLCHAIN_FILE="${Env:VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
- - name: Build all
- working-directory: ${{runner.workspace}}/build
- run: cmake --build . --config "${Env:BUILD_TYPE}" -j 2
- - name: Show built files
- working-directory: ${{runner.workspace}}/build/bin
- run: tree
- - uses: actions/upload-artifact@v2
- with:
- name: Win64 artifacts
- path: ${{runner.workspace}}/build/bin/
|