name: Build on: push: branches-ignore: - 'l10n_master' pull_request: branches-ignore: - 'l10n_master' jobs: windows: name: "Windows 64-bit" strategy: matrix: runner: [ windows-2019 ] include: - runner: windows-2019 id: windows2019 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 }} steps: - name: "Clone Repository" uses: actions/checkout@v1 - name: "Clone Submodules" shell: bash run: git submodule update --init --recursive - name: "Cache: OBS" uses: actions/cache@v1 env: cache-name: cache-libobs with: path: build/temp/libobs-src key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('CMakeLists.txt') }} restore-keys: | ${{ runner.os }}-${{ env.cache-name }}- ${{ runner.os }}-${{ env.cache-name }} - name: "Cache: OBS Dependencies" uses: actions/cache@v1 env: cache-name: cache-libobs-deps with: path: build/temp/obsdeps-src key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('CMakeLists.txt') }} restore-keys: | ${{ runner.os }}-${{ env.cache-name }}- ${{ runner.os }}-${{ env.cache-name }} - name: "Cache: Qt" uses: actions/cache@v1 env: cache-name: cache-qt with: path: build/temp/qt-src key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('CMakeLists.txt') }} restore-keys: | ${{ runner.os }}-${{ env.cache-name }}- ${{ runner.os }}-${{ env.cache-name }} - name: "Configure Project" shell: bash run: | cmake -H. -B"build/temp" -DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON - name: "Build Project" shell: bash run: | cmake --build "build/temp" --config RelWithDebInfo --target INSTALL - name: "Package Project" shell: bash run: | 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: | & 'C:\Program Files (x86)\Inno Setup 6\ISCC.exe' /Qp ".\build\temp\installer.iss" - name: "Upload Artifacts" uses: actions/upload-artifact@v1 with: name: ${{ matrix.id }} path: build/package ubuntu: name: "Linux/Ubuntu 64-bit" strategy: matrix: runner: [ ubuntu-18.04, ubuntu-latest ] compiler: [ gcc, clang ] include: - runner: ubuntu-18.04 compiler: gcc compiler-cxx: g++ compiler-version: 8 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 id: ubuntu1804-gcc8 - runner: ubuntu-latest compiler: gcc compiler-cxx: g++ compiler-version: 9 extra_command: sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-9 800 --slave /usr/bin/g++ g++ /usr/bin/g++-9 id: ubuntu1910-gcc9 - runner: ubuntu-latest compiler: clang compiler-cxx: clang++ compiler-version: 9 packages: clang-9 extra_command: "" id: ubuntu1910-clang9 exclude: - runner: ubuntu-18.04 compiler: clang runs-on: ${{ matrix.runner }} env: CMAKE_GENERATOR: "Ninja" CC: ${{ matrix.compiler }} CXX: ${{ matrix.compiler-cxx }} steps: - name: "Clone Repository" uses: actions/checkout@v1 - name: "Prerequisites: Submodules" shell: bash run: git submodule update --init --recursive - name: "Prerequisites: Apt-Get" shell: bash run: | sudo apt-get -qq update sudo apt-get install \ build-essential \ ${{ matrix.packages }} \ checkinstall \ cmake \ ninja-build \ git \ libavcodec-dev \ libavdevice-dev \ libavfilter-dev \ libavformat-dev \ libavutil-dev \ libswresample-dev \ libswscale-dev \ qtbase5-dev \ libqt5x11extras5-dev \ libqt5svg5-dev \ libgl1-mesa-dev \ pkg-config ${{ matrix.extra_command }} - name: "Cache: OBS" uses: actions/cache@v1 env: cache-name: cache-libobs with: path: build/temp/libobs-src key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('CMakeLists.txt') }} restore-keys: | ${{ runner.os }}-${{ env.cache-name }}- ${{ runner.os }}-${{ env.cache-name }} - name: "Configure Project" shell: bash run: | cmake -H. -B"build/temp" -DCMAKE_PACKAGE_NAME="streamfx-${{ matrix.id }}" -DCMAKE_INSTALL_PREFIX="build/distrib" -DCMAKE_PACKAGE_PREFIX="build/package" -DOBS_DOWNLOAD=ON - name: "Build Project" shell: bash run: | cmake --build "build/temp" --config RelWithDebInfo --target install - name: "Package Project" shell: bash run: | mkdir build/package cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_7Z cmake --build "build/temp" --config RelWithDebInfo --target PACKAGE_ZIP - name: "Upload Artifacts" uses: actions/upload-artifact@v1 with: name: ${{ matrix.id }} path: build/package