2024-09-05 03:51:02 +03:00
|
|
|
# Copyright (c) Microsoft Corporation.
|
|
|
|
# Licensed under the MIT License.
|
|
|
|
#
|
|
|
|
# https://go.microsoft.com/fwlink/?LinkID=324981
|
|
|
|
|
|
|
|
name: 'CMake (WSL)'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ "main" ]
|
|
|
|
pull_request:
|
|
|
|
branches: [ "main" ]
|
|
|
|
paths-ignore:
|
|
|
|
- '*.md'
|
|
|
|
- LICENSE
|
|
|
|
- '.nuget/*'
|
|
|
|
- build/*.cmd
|
|
|
|
- build/*.props
|
|
|
|
- build/*.ps1
|
|
|
|
- build/*.targets
|
|
|
|
- build/*.yml
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
build_type: [x64-Debug-Linux, x64-Release-Linux]
|
|
|
|
gcc: [10, 11, 12]
|
|
|
|
|
|
|
|
steps:
|
2024-10-29 01:11:58 +03:00
|
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
2024-09-05 03:51:02 +03:00
|
|
|
|
2024-09-11 21:51:25 +03:00
|
|
|
- uses: seanmiddleditch/gha-setup-ninja@96bed6edff20d1dd61ecff9b75cc519d516e6401 # v5
|
2024-09-05 03:51:02 +03:00
|
|
|
|
2024-09-11 21:51:25 +03:00
|
|
|
- uses: lukka/run-vcpkg@7d259227a1fb6471a0253dd5ab7419835228f7d7 # v11
|
2024-09-05 03:51:02 +03:00
|
|
|
with:
|
|
|
|
runVcpkgInstall: true
|
|
|
|
vcpkgJsonGlob: '**/build/vcpkg.json'
|
2024-10-06 09:13:33 +03:00
|
|
|
vcpkgGitCommitId: '${{ vars.VCPKG_COMMIT_ID }}'
|
2024-09-05 03:51:02 +03:00
|
|
|
|
|
|
|
- name: 'Configure CMake'
|
|
|
|
working-directory: ${{ github.workspace }}
|
|
|
|
run: >
|
|
|
|
cmake --preset=${{ matrix.build_type }}
|
|
|
|
-DCMAKE_TOOLCHAIN_FILE="${{ github.workspace }}/vcpkg/scripts/buildsystems/vcpkg.cmake" -DVCPKG_MANIFEST_DIR="${{ github.workspace }}/build"
|
|
|
|
-DVCPKG_TARGET_TRIPLET="x64-linux"
|
|
|
|
|
|
|
|
env:
|
|
|
|
CC: gcc-${{ matrix.gcc }}
|
|
|
|
CXX: g++-${{ matrix.gcc }}
|
|
|
|
|
|
|
|
- name: 'Build'
|
|
|
|
working-directory: ${{ github.workspace }}
|
|
|
|
run: cmake --build out/build/${{ matrix.build_type }}
|