2020-04-02 18:22:44 +00:00
|
|
|
name: Build
|
2019-09-03 19:18:14 +00:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2019-12-18 05:46:03 +00:00
|
|
|
windows:
|
2020-04-02 18:22:44 +00:00
|
|
|
name: "Windows 64-bit"
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-04-22 22:36:40 +00:00
|
|
|
runner: [ windows-2019 ]
|
2020-04-02 18:22:44 +00:00
|
|
|
include:
|
|
|
|
- runner: windows-2019
|
2020-04-02 23:44:23 +00:00
|
|
|
id: windows2019
|
2020-04-02 18:22:44 +00:00
|
|
|
windows_sdk: "10.0.18362.0"
|
|
|
|
cmake_generator: "Visual Studio 16 2019"
|
|
|
|
cmake_generator_platform: "x64"
|
|
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
env:
|
|
|
|
CMAKE_GENERATOR: ${{ matrix.cmake_generator }}
|
|
|
|
CMAKE_GENERATOR_PLATFORM: ${{ matrix.cmake_generator_platform }}
|
|
|
|
CMAKE_GENERATOR_TOOLSET: "host=x64"
|
|
|
|
CMAKE_SYSTEM_VERSION: ${{ matrix.windows_sdk }}
|
2019-09-03 19:18:14 +00:00
|
|
|
steps:
|
2019-12-18 05:46:03 +00:00
|
|
|
- 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"
|
2020-01-14 08:41:24 +00:00
|
|
|
shell: bash
|
2020-01-14 08:31:41 +00:00
|
|
|
run: |
|
2020-04-02 22:17:36 +00:00
|
|
|
cmake -H. -B"build/temp" -DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON
|
2020-01-14 08:31:41 +00:00
|
|
|
- name: "Build Project"
|
2020-01-14 08:41:24 +00:00
|
|
|
shell: bash
|
2020-01-14 08:31:41 +00:00
|
|
|
run: |
|
2020-02-13 09:11:33 +00:00
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target INSTALL
|
2020-01-14 08:31:41 +00:00
|
|
|
- name: "Package Project"
|
2020-01-14 08:41:24 +00:00
|
|
|
shell: bash
|
2019-12-18 05:46:03 +00:00
|
|
|
run: |
|
2020-02-13 09:15:23 +00:00
|
|
|
mkdir build/package
|
2020-01-14 08:41:24 +00:00
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_7Z
|
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_ZIP
|
2019-12-18 05:46:03 +00:00
|
|
|
- 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"
|
2019-12-18 05:46:03 +00:00
|
|
|
- name: "Upload Artifacts"
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2020-04-02 22:17:36 +00:00
|
|
|
name: ${{ matrix.id }}
|
2019-12-18 05:46:03 +00:00
|
|
|
path: build/package
|
2020-04-02 18:22:44 +00:00
|
|
|
ubuntu:
|
|
|
|
name: "Linux/Ubuntu 64-bit"
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-04-02 23:44:23 +00:00
|
|
|
runner: [ ubuntu-18.04, ubuntu-latest ]
|
2020-04-02 18:22:44 +00:00
|
|
|
include:
|
2020-04-02 22:17:36 +00:00
|
|
|
- runner: ubuntu-18.04
|
|
|
|
gcc: 8
|
2020-04-02 23:44:23 +00:00
|
|
|
id: ubuntu1804
|
|
|
|
- runner: ubuntu-latest
|
2020-04-02 22:17:36 +00:00
|
|
|
gcc: 9
|
2020-04-02 23:44:23 +00:00
|
|
|
id: ubuntu1910
|
2020-04-02 18:22:44 +00:00
|
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
env:
|
|
|
|
CMAKE_GENERATOR: "Ninja"
|
2020-02-13 09:11:33 +00:00
|
|
|
steps:
|
|
|
|
- name: "Clone Repository"
|
|
|
|
uses: actions/checkout@v1
|
2020-04-02 18:22:44 +00:00
|
|
|
- name: "Prerequisites: Submodules"
|
2020-03-25 19:23:47 +00:00
|
|
|
shell: bash
|
|
|
|
run: git submodule update --init --recursive
|
2020-04-02 18:22:44 +00:00
|
|
|
- name: "Prerequisites: Apt-Get"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
sudo apt-get -qq update
|
2020-04-02 22:17:36 +00:00
|
|
|
sudo apt-get install \
|
|
|
|
build-essential \
|
|
|
|
gcc-${{ matrix.gcc }} \
|
|
|
|
g++-${{ matrix.gcc }} \
|
|
|
|
checkinstall \
|
|
|
|
cmake \
|
|
|
|
ninja-build \
|
|
|
|
git \
|
|
|
|
libavcodec-dev \
|
|
|
|
libavdevice-dev \
|
|
|
|
libavfilter-dev \
|
|
|
|
libavformat-dev \
|
|
|
|
libavutil-dev \
|
|
|
|
libswresample-dev \
|
|
|
|
libswscale-dev \
|
2020-04-05 08:33:35 +00:00
|
|
|
qtbase5-dev \
|
|
|
|
libqt5x11extras5-dev \
|
|
|
|
libqt5svg5-dev \
|
2020-04-02 22:17:36 +00:00
|
|
|
libgl1-mesa-dev \
|
|
|
|
pkg-config
|
|
|
|
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ matrix.gcc }} 800 --slave /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.gcc }}
|
2020-02-13 09:11:33 +00:00
|
|
|
- name: "Configure Project"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-04-02 22:17:36 +00:00
|
|
|
cmake -H. -B"build/temp" -DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON
|
2020-02-13 09:11:33 +00:00
|
|
|
- name: "Build Project"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-04-02 18:22:44 +00:00
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target install
|
2020-02-13 09:11:33 +00:00
|
|
|
- name: "Package Project"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-02-13 09:15:23 +00:00
|
|
|
mkdir build/package
|
2020-04-02 18:22:44 +00:00
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_7Z
|
|
|
|
cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_ZIP
|
2020-02-13 09:11:33 +00:00
|
|
|
- name: "Upload Artifacts"
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
2020-04-02 22:17:36 +00:00
|
|
|
name: ${{ matrix.id }}
|
2020-02-13 09:11:33 +00:00
|
|
|
path: build/package
|