mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2024-12-27 23:35:30 +03:00
39 lines
1.0 KiB
YAML
39 lines
1.0 KiB
YAML
#
|
|
# MAPBASE SOURCE 2013 CI
|
|
#
|
|
# Builds map tool projects every time a pull request which modifies the map tool code is opened.
|
|
# If you're using a fork of Mapbase, feel free to configure this to meet your repository's needs.
|
|
#
|
|
# See mapbase_build-base.yml for more information on how this works.
|
|
|
|
name: Build Map Tool Projects #(SP Release)
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- '.github/workflows/mapbase_build-sp-rel-maptools.yml'
|
|
- 'sp/src/vpc_scripts/**'
|
|
- 'sp/src/utils/vbsp/**'
|
|
- 'sp/src/utils/vvis/**'
|
|
- 'sp/src/utils/vvis_launcher/**'
|
|
- 'sp/src/utils/vrad/**'
|
|
- 'sp/src/utils/vrad_launcher/**'
|
|
- 'sp/src/mathlib/**'
|
|
- 'sp/src/tier1/**'
|
|
- 'sp/src/vgui2/vgui_controls/**'
|
|
- 'sp/src/vscript/**'
|
|
|
|
jobs:
|
|
maptools:
|
|
strategy:
|
|
matrix:
|
|
configuration: [Release, Debug]
|
|
uses: ./.github/workflows/mapbase_build-base.yml
|
|
with:
|
|
configuration: ${{ matrix.configuration }}
|
|
branch: 'sp'
|
|
project-group: 'maptools'
|
|
solution-name: 'maptools'
|