2020-04-02 18:22:44 +00:00
|
|
|
name: Build
|
2019-09-03 19:18:14 +00:00
|
|
|
|
2020-07-15 19:43:49 +00:00
|
|
|
on:
|
2020-04-23 23:55:40 +00:00
|
|
|
push:
|
2020-09-25 19:06:59 +00:00
|
|
|
tags:
|
|
|
|
- '*'
|
2020-04-23 23:55:40 +00:00
|
|
|
branches-ignore:
|
|
|
|
- 'l10n_master'
|
|
|
|
pull_request:
|
2020-04-24 04:18:40 +00:00
|
|
|
branches:
|
|
|
|
- '*'
|
2019-09-03 19:18:14 +00:00
|
|
|
|
2020-11-02 15:52:21 +00:00
|
|
|
env:
|
|
|
|
DOWNLOAD_OBS_VERSION: "26.0.2-ci"
|
|
|
|
|
2019-09-03 19:18:14 +00:00
|
|
|
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:
|
2020-11-02 15:52:21 +00:00
|
|
|
DOWNLOAD_OBS_HASH_64: "SHA512=571B4196DF5CFBD3A8E113C97C7890000C490DDF1C6747529DE0F06063F928E7488095775919017104DE7A693CCF51A7A82BD04BCE62D6B3F0ED1F74A5F32B32"
|
|
|
|
DOWNLOAD_OBSDEPS_VERSION: "26.0.0"
|
|
|
|
DOWNLOAD_OBSDEPS_HASH: "SHA512=2D47E7579DE3FBD88C52BB62C2CA4D649BD958FBAE8E5B01EE263D7583B4D8EEEA8CE13C543BEF110FAC9142891C031973A1BC20AC6EED596E6AB97CCC669D16"
|
|
|
|
DOWNLOAD_QT_VERSION: "5.10.1"
|
|
|
|
DOWNLOAD_QT_HASH: "SHA512=848B9AC00B06FCA1F1A85BD4EFEA4138D278E8EC96823C5C36CC988DDE5D27E2F91300B02F2F0E71F075CCB0D791D3C888CDA6A5048DDFE6F946A8697DFEF1E9"
|
2020-04-02 18:22:44 +00:00
|
|
|
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-11-02 15:52:21 +00:00
|
|
|
- name: "Cache: OBS"
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: "build/temp/libobs-download/libobs-download-prefix/src/libobs.7z"
|
|
|
|
key: ${{ matrix.id }}-${{ env.DOWNLOAD_OBS_VERSION }}-${{ env.DOWNLOAD_OBS_HASH_64 }}
|
|
|
|
- name: "Cache: OBS Dependencies"
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: "build/temp/obsdeps-download/obsdeps-download-prefix/src/obsdeps.7z"
|
|
|
|
key: ${{ matrix.id }}-${{ env.DOWNLOAD_OBSDEPS_VERSION }}-${{ env.DOWNLOAD_OBSDEPS_HASH }}
|
|
|
|
- name: "Cache: Qt"
|
2020-07-15 19:43:49 +00:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2020-11-02 15:52:21 +00:00
|
|
|
path: "build/temp/qt-download/qt-download-prefix/src/qt.7z"
|
|
|
|
key: ${{ matrix.id }}-${{ env.DOWNLOAD_QT_VERSION }}-${{ env.DOWNLOAD_QT_HASH }}
|
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-09-28 19:28:21 +00:00
|
|
|
cmake -H. -B"build/temp" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="build/distrib" \
|
|
|
|
-DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" \
|
|
|
|
-DCMAKE_PACKAGE_PREFIX="build/package"
|
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:
|
2020-04-24 01:09:59 +00:00
|
|
|
name: "Ubuntu 64-bit"
|
2020-04-02 18:22:44 +00:00
|
|
|
strategy:
|
2020-04-24 01:09:59 +00:00
|
|
|
matrix:
|
2020-07-29 03:31:02 +00:00
|
|
|
ubuntu: [ bionic, focal ]
|
2020-04-23 23:50:16 +00:00
|
|
|
compiler: [ gcc, clang ]
|
2020-04-02 18:22:44 +00:00
|
|
|
include:
|
2020-04-24 01:09:59 +00:00
|
|
|
- ubuntu: bionic
|
2020-04-23 23:50:16 +00:00
|
|
|
compiler: gcc
|
2020-04-24 01:09:59 +00:00
|
|
|
compiler-cxx: g++
|
|
|
|
runner: ubuntu-18.04
|
2020-04-23 23:50:16 +00:00
|
|
|
packages: gcc-8 g++8
|
|
|
|
extra_command: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bin/g++-8
|
2020-07-29 03:31:02 +00:00
|
|
|
id: ubuntu-18.04
|
2020-04-24 01:09:59 +00:00
|
|
|
- ubuntu: bionic
|
2020-07-29 03:31:02 +00:00
|
|
|
compiler: clang
|
2020-09-28 19:28:21 +00:00
|
|
|
compiler-cxx: clang++
|
2020-07-29 03:31:02 +00:00
|
|
|
compiler-version: 8
|
|
|
|
runner: ubuntu-18.04
|
2020-09-28 19:28:21 +00:00
|
|
|
packages: clang-8 clang-format-8 clang-tidy-8
|
2020-07-29 03:31:02 +00:00
|
|
|
extra_command: ""
|
|
|
|
id: ubuntu-18.04-clang
|
|
|
|
- ubuntu: focal
|
2020-04-23 23:50:16 +00:00
|
|
|
compiler: gcc
|
2020-04-24 01:09:59 +00:00
|
|
|
compiler-cxx: g++
|
2020-07-29 03:31:02 +00:00
|
|
|
runner: ubuntu-20.04
|
2020-04-24 01:09:59 +00:00
|
|
|
packages: gcc-9 g++9
|
2020-04-23 23:50:16 +00:00
|
|
|
extra_command: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 800 --slave /usr/bin/g++ g++ /usr/bin/g++-9
|
2020-07-29 03:31:02 +00:00
|
|
|
id: ubuntu-20.04
|
|
|
|
- ubuntu: focal
|
2020-04-23 23:50:16 +00:00
|
|
|
compiler: clang
|
2020-09-28 19:28:21 +00:00
|
|
|
compiler-cxx: clang++
|
2020-04-23 23:50:16 +00:00
|
|
|
compiler-version: 9
|
2020-07-29 03:31:02 +00:00
|
|
|
runner: ubuntu-20.04
|
2020-09-28 19:28:21 +00:00
|
|
|
packages: clang-9 clang-format-9 clang-tidy-9
|
2020-04-23 23:50:16 +00:00
|
|
|
extra_command: ""
|
2020-07-29 03:31:02 +00:00
|
|
|
id: ubuntu-20.04-clang
|
2020-04-02 18:22:44 +00:00
|
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
env:
|
2020-11-02 15:52:21 +00:00
|
|
|
DOWNLOAD_OBS_HASH_64: "SHA512=62EAD42890CEF953806F5780ED37304D6BD110F65D3ED83A88ADA462B0A0E46E9DEE477A76D456C444102EBA4F9F9A9EAAA299DCFDB2872233E2B35F775CCD0D"
|
2020-04-02 18:22:44 +00:00
|
|
|
CMAKE_GENERATOR: "Ninja"
|
2020-04-23 23:50:16 +00:00
|
|
|
CC: ${{ matrix.compiler }}
|
|
|
|
CXX: ${{ matrix.compiler-cxx }}
|
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-24 01:09:59 +00:00
|
|
|
sudo apt-get purge libjpeg9-dev:amd64 libjpeg8-dev:amd64 libjpeg-turbo8-dev:amd64
|
2020-04-02 22:17:36 +00:00
|
|
|
sudo apt-get install \
|
2020-04-24 01:09:59 +00:00
|
|
|
build-essential \
|
2020-04-02 22:17:36 +00:00
|
|
|
cmake \
|
|
|
|
ninja-build \
|
|
|
|
git \
|
2020-08-10 00:46:25 +00:00
|
|
|
qt5-default libqwt-qt5-dev libqt5svg5-dev \
|
2020-09-09 03:06:15 +00:00
|
|
|
libavcodec-dev libavdevice-dev libavfilter-dev libavformat-dev libavutil-dev libswresample-dev libswscale-dev \
|
|
|
|
libcurl4-openssl-dev \
|
|
|
|
${{ matrix.packages }} \
|
|
|
|
checkinstall pkg-config
|
2020-04-23 23:50:16 +00:00
|
|
|
${{ matrix.extra_command }}
|
2020-11-02 15:52:21 +00:00
|
|
|
- name: "Cache: OBS"
|
2020-07-15 19:43:49 +00:00
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
2020-11-02 15:52:21 +00:00
|
|
|
path: "build/temp/libobs-download/libobs-download-prefix/src/libobs.7z"
|
|
|
|
key: ${{ matrix.id }}-${{ env.DOWNLOAD_OBS_VERSION }}-${{ env.DOWNLOAD_OBS_HASH_64 }}
|
2020-02-13 09:11:33 +00:00
|
|
|
- name: "Configure Project"
|
|
|
|
shell: bash
|
|
|
|
run: |
|
2020-09-28 19:28:21 +00:00
|
|
|
cmake -H. -B"build/temp" \
|
|
|
|
-DCMAKE_INSTALL_PREFIX="build/distrib" \
|
|
|
|
-DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" \
|
|
|
|
-DCMAKE_PACKAGE_PREFIX="build/package" \
|
|
|
|
-DENABLE_FILTER_NVIDIA_FACE_TRACKING=FALSE
|
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-04-23 23:50:16 +00:00
|
|
|
path: build/package
|