obs-StreamFX/.github/workflows/main.yml

76 lines
2.7 KiB
YAML
Raw Normal View History

name: CI
on: [push, pull_request]
jobs:
windows:
2020-01-14 08:32:58 +00:00
runs-on: windows-2019
2020-03-25 19:23:47 +00:00
name: "Windows"
steps:
- name: "Clone Repository"
uses: actions/checkout@v1
2020-03-25 19:23:47 +00:00
- name: "Clone Submodules"
shell: bash
run: git submodule update --init --recursive
2020-01-14 08:31:41 +00:00
- name: "Configure Project"
shell: bash
2020-01-14 08:31:41 +00:00
run: |
cmake -H. -B"build/temp" -G"Visual Studio 16 2019" -A"x64" -T"host=x64" -DCMAKE_PACKAGE_NAME=StreamFX -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON
2020-01-14 08:31:41 +00:00
- name: "Build Project"
shell: bash
2020-01-14 08:31:41 +00:00
run: |
cmake --build "build/temp" --config RelWithDebInfo --target INSTALL
2020-01-14 08:31:41 +00:00
- name: "Package Project"
shell: bash
run: |
2020-02-13 09:15:23 +00:00
mkdir build/package
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_7Z
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_ZIP
- name: "Package Installer (Prereqs)"
run: |
curl "-kL" "https://cdn.xaymar.com/ci/innosetup-6.0.3.exe" "-f" "--retry" "5" "-o" "inno.exe"
.\inno.exe /VERYSILENT /SP- /SUPPRESSMSGBOXES /NORESTART
- name: "Package Installer (Compile)"
run: |
2020-02-13 09:25:33 +00:00
& 'C:\Program Files (x86)\Inno Setup 6\ISCC.exe' /Qp ".\build\temp\installer.iss"
- name: "Upload Artifacts"
uses: actions/upload-artifact@v1
with:
name: windows
path: build/package
windows-speed:
runs-on: windows-2019
2020-03-25 19:23:47 +00:00
name: "Windows (Performance)"
steps:
- name: "Clone Repository"
uses: actions/checkout@v1
2020-03-25 19:23:47 +00:00
- name: "Clone Submodules"
shell: bash
run: git submodule update --init --recursive
- name: "Configure Project"
shell: bash
run: |
cmake -H. -B"build/temp" -G"Visual Studio 16 2019" -A"x64" -T"host=x64" -DCMAKE_PACKAGE_NAME=StreamFX -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON
- name: "Build Project"
shell: bash
run: |
cmake --build "build/temp" --config Speed --target INSTALL
- name: "Package Project"
shell: bash
run: |
2020-02-13 09:15:23 +00:00
mkdir build/package
cmake --build "build/temp" --config Speed --target PACKAGE_7Z
cmake --build "build/temp" --config Speed --target PACKAGE_ZIP
- name: "Package Installer (Prereqs)"
run: |
curl "-kL" "https://cdn.xaymar.com/ci/innosetup-6.0.3.exe" "-f" "--retry" "5" "-o" "inno.exe"
.\inno.exe /VERYSILENT /SP- /SUPPRESSMSGBOXES /NORESTART
- name: "Package Installer (Compile)"
run: |
2020-02-13 09:25:33 +00:00
& 'C:\Program Files (x86)\Inno Setup 6\ISCC.exe' /Qp ".\build\temp\installer.iss"
- name: "Upload Artifacts"
uses: actions/upload-artifact@v1
with:
2020-02-13 09:15:44 +00:00
name: windows-speed
path: build/package