48 lines
1.5 KiB
YAML
48 lines
1.5 KiB
YAML
name: Build servers on Windows
|
|
# build_servers_windows.yml
|
|
|
|
concurrency:
|
|
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
paths:
|
|
# Always trigger all Github Actions if an action or something CI related was changed
|
|
- '.github/workflows/**'
|
|
- 'tools/ci/**'
|
|
# This workflow should run when a file in a source directory has been modified.
|
|
- 'src/**'
|
|
- '3rdparty/**'
|
|
# This workflow should run whenever a CMake related file has been modified
|
|
- '**/CMakeLists.txt'
|
|
|
|
jobs:
|
|
build:
|
|
# Github Actions checks for '[ci skip]', '[skip ci]', '[no ci]', '[skip actions]', or '[actions skip]' but not a hyphenated version.
|
|
# It's a catch-all incase a Pull Request has been opened and someone is on auto-pilot.
|
|
if: "!contains(github.event.head_commit.message, 'ci-skip')"
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [windows-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Create build directory
|
|
run: cmake -E make_directory ${{github.workspace}}/build
|
|
|
|
- name: Configure CMake
|
|
working-directory: ${{github.workspace}}/build
|
|
run: cmake ..
|
|
|
|
- name: Build
|
|
working-directory: ${{github.workspace}}/build
|
|
# Execute the build. You can specify a specific target with "--target <NAME>"
|
|
run: cmake --build . -j2 --target server tools
|