2021-06-06 21:15:36 +02:00
|
|
|
name: build
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-06-07 23:05:47 +02:00
|
|
|
- os: ubuntu-latest
|
|
|
|
cc: gcc
|
|
|
|
cxx: g++
|
|
|
|
- os: ubuntu-latest
|
|
|
|
cc: clang
|
|
|
|
cxx: clang++
|
2021-06-18 04:39:58 +02:00
|
|
|
- os: windows-2016
|
|
|
|
cc: cl
|
|
|
|
cxx: cl
|
2021-06-06 21:15:36 +02:00
|
|
|
env:
|
2021-06-07 23:05:47 +02:00
|
|
|
CC: ${{ matrix.cc }}
|
|
|
|
CXX: ${{ matrix.cxx }}
|
2021-06-06 21:15:36 +02:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-10-27 03:35:11 +02:00
|
|
|
with:
|
|
|
|
submodules: true
|
2021-06-07 23:05:47 +02:00
|
|
|
|
2021-06-18 04:39:58 +02:00
|
|
|
- name: Checkout steam-runtime
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2021-06-07 23:05:47 +02:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
2021-06-18 04:39:58 +02:00
|
|
|
repository: ValveSoftware/steam-runtime
|
|
|
|
path: steam-runtime
|
|
|
|
- name: Cache steam-runtime
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
id: cache-steam-runtime
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: com.valvesoftware.SteamRuntime.Sdk-i386-scout-sysroot.tar.gz
|
|
|
|
key: ${{ runner.os }}-steam-runtime
|
|
|
|
- name: Download steam-runtime
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && steps.cache-steam-runtime.outputs.cache-hit != 'true'
|
|
|
|
run: wget --no-verbose https://repo.steampowered.com/steamrt-images-scout/snapshots/0.20210610.0/com.valvesoftware.SteamRuntime.Sdk-i386-scout-sysroot.tar.gz
|
|
|
|
- name: Install steam runtime
|
2021-06-07 23:05:47 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
run: |
|
2021-10-21 18:55:42 +02:00
|
|
|
sudo apt update
|
2021-06-18 04:39:58 +02:00
|
|
|
./steam-runtime/setup_chroot.sh --i386 --tarball ./com.valvesoftware.SteamRuntime.Sdk-i386-scout-sysroot.tar.gz
|
|
|
|
sudo sed -i 's/groups=sudo/groups=adm/g' /etc/schroot/chroot.d/steamrt_scout_i386.conf
|
2021-06-07 23:05:47 +02:00
|
|
|
|
|
|
|
- name: Build with xash3d-fwgs input
|
2021-06-18 04:39:58 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2021-06-06 21:15:36 +02:00
|
|
|
run: |
|
2021-06-18 04:39:58 +02:00
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake -B build-fwgs -S . -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined"
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake --build build-fwgs --target all
|
2021-06-07 23:05:47 +02:00
|
|
|
- name: Build with goldsource input
|
2021-06-18 04:39:58 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2021-06-07 23:05:47 +02:00
|
|
|
run: |
|
2021-06-18 04:39:58 +02:00
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake -B build -S . -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined" -DGOLDSOURCE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX="$PWD/dist"
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake --build build --target all
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake --build build --target install
|
2021-10-27 03:35:11 +02:00
|
|
|
- name: Build with goldsource input and vgui
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.cc, 'gcc')
|
|
|
|
run: |
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake -B build-vgui -S . -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined" -DGOLDSOURCE_SUPPORT=ON -DUSE_VGUI=ON -DCMAKE_INSTALL_PREFIX="$PWD/dist-vgui"
|
|
|
|
cp vgui-dev/lib/vgui.so build-vgui/cl_dll
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake --build build-vgui --target all
|
|
|
|
schroot --chroot steamrt_scout_i386 -- cmake --build build-vgui --target install
|
2021-06-07 23:05:47 +02:00
|
|
|
|
2021-06-15 21:08:11 +02:00
|
|
|
- name: Build with mingw
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.cc, 'gcc')
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y mingw-w64-i686-dev binutils-mingw-w64-i686 gcc-mingw-w64-i686 g++-mingw-w64-i686
|
|
|
|
cmake -B build-mingw -S . -DCMAKE_SYSTEM_NAME=Windows -DCMAKE_C_COMPILER=i686-w64-mingw32-gcc -DCMAKE_CXX_COMPILER=i686-w64-mingw32-g++
|
|
|
|
cmake --build build-mingw --target all
|
|
|
|
|
2021-06-18 04:39:58 +02:00
|
|
|
- name: Add msbuild to PATH
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
uses: microsoft/setup-msbuild@v1.0.2
|
|
|
|
- name: Build with msvc
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |
|
|
|
|
cmake -G "Visual Studio 15 2017" -B build -DGOLDSOURCE_SUPPORT=ON -DCMAKE_INSTALL_PREFIX="dist"
|
2021-08-27 10:04:15 +02:00
|
|
|
msbuild -verbosity:normal /property:Configuration=Release build/INSTALL.vcxproj
|
2021-10-27 03:35:11 +02:00
|
|
|
- name: Build with msvc and vgui
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |
|
|
|
|
cmake -G "Visual Studio 15 2017" -B build -DGOLDSOURCE_SUPPORT=ON -DUSE_VGUI=ON -DCMAKE_INSTALL_PREFIX="dist-vgui"
|
|
|
|
msbuild -verbosity:normal /property:Configuration=Release build/INSTALL.vcxproj
|
2021-06-18 04:39:58 +02:00
|
|
|
|
|
|
|
- name: Extract branch name
|
|
|
|
shell: bash
|
|
|
|
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/} | tr '/' '_')"
|
|
|
|
id: extract_branch
|
|
|
|
- name: Extract gamedir
|
|
|
|
shell: bash
|
|
|
|
run: echo "##[set-output name=gamedir;]$(grep build/CMakeCache.txt -Ee 'GAMEDIR:STRING=[a-z]+' | cut -d '=' -f 2)"
|
|
|
|
id: extract_gamedir
|
|
|
|
- name: Upload linux artifact
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && matrix.cc == 'gcc'
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: hlsdk-${{ steps.extract_branch.outputs.branch }}-linux
|
|
|
|
path: dist/${{ steps.extract_gamedir.outputs.gamedir }}
|
2021-10-27 03:35:11 +02:00
|
|
|
- name: Upload linux artifact with vgui
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && matrix.cc == 'gcc'
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: hlsdk-${{ steps.extract_branch.outputs.branch }}-linux-vgui
|
|
|
|
path: dist-vgui/${{ steps.extract_gamedir.outputs.gamedir }}
|
2021-06-18 04:39:58 +02:00
|
|
|
- name: Upload windows artifact
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: hlsdk-${{ steps.extract_branch.outputs.branch }}-windows
|
|
|
|
path: dist/${{ steps.extract_gamedir.outputs.gamedir }}
|
2021-10-27 03:35:11 +02:00
|
|
|
- name: Upload windows artifact with vgui
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: hlsdk-${{ steps.extract_branch.outputs.branch }}-windows-vgui
|
|
|
|
path: dist-vgui/${{ steps.extract_gamedir.outputs.gamedir }}
|
2021-06-18 04:39:58 +02:00
|
|
|
|