mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '.github/CONTRIBUTING.md'
|
|
- '.github/FUNDING.md'
|
|
- '.github/ISSUE_TEMPLATE.md'
|
|
- '.appveyor.yml'
|
|
- 'README.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '.github/CONTRIBUTING.md'
|
|
- '.github/FUNDING.md'
|
|
- '.github/ISSUE_TEMPLATE.md'
|
|
- '.appveyor.yml'
|
|
- 'README.md'
|
|
|
|
jobs:
|
|
build-windows:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
configuration: [Release, Debug]
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Init submodules
|
|
run: git submodule update --init --recursive
|
|
- uses: jurplel/install-qt-action@v2.3.0
|
|
with:
|
|
version: 5.14.0
|
|
- name: Premake
|
|
run: tools\premake\bin\win32\premake5 --file=code/premake5.lua vs2019
|
|
- uses: microsoft/setup-msbuild@v1
|
|
- name: Build
|
|
run: msbuild /m /nologo /p:Configuration=${{ matrix.configuration }} build\PS4Delta.sln
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: PS4Delta-${{ matrix.configuration }}
|
|
path: bin\${{ matrix.configuration }}
|