mirror of
https://github.com/accelerator74/l4dtoolz.git
synced 2024-12-22 14:37:26 +08:00
Create l4d_build.yml
This commit is contained in:
parent
87774f26b6
commit
262bc8f935
120
.github/workflows/l4d_build.yml
vendored
Normal file
120
.github/workflows/l4d_build.yml
vendored
Normal file
@ -0,0 +1,120 @@
|
||||
name: l4d-build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
paths-ignore:
|
||||
- LICENSE
|
||||
- README.md
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- LICENSE
|
||||
- README.md
|
||||
schedule:
|
||||
- cron: '30 03 01 */3 *' # Artifacts expire every 3 months
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: build with mms${{ matrix.mm_version }} on ${{ matrix.os_short }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- windows-latest
|
||||
|
||||
mm_version:
|
||||
- "1.10"
|
||||
|
||||
include:
|
||||
- mm_version: "1.10"
|
||||
mm_branch: "1.10-dev"
|
||||
|
||||
- os: ubuntu-latest
|
||||
os_short: linux
|
||||
|
||||
- os: windows-latest
|
||||
os_short: win
|
||||
|
||||
steps:
|
||||
- name: Prepare env
|
||||
shell: bash
|
||||
run: |
|
||||
echo "GITHUB_SHA_SHORT=${GITHUB_SHA::7}" >> $GITHUB_ENV
|
||||
|
||||
- name: Install (Linux)
|
||||
if: runner.os == 'Linux'
|
||||
run: |
|
||||
sudo dpkg --add-architecture i386
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y clang g++-multilib
|
||||
echo "CC=clang" >> $GITHUB_ENV
|
||||
echo "CXX=clang++" >> $GITHUB_ENV
|
||||
|
||||
- name: Add msbuild to PATH (Windows)
|
||||
if: runner.os == 'Windows'
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
|
||||
- name: Install (Windows)
|
||||
if: runner.os == 'Windows'
|
||||
shell: cmd
|
||||
run: |
|
||||
:: See https://github.com/microsoft/vswhere/wiki/Find-VC
|
||||
for /f "usebackq delims=*" %%i in (`vswhere -latest -property installationPath`) do (
|
||||
call "%%i"\Common7\Tools\vsdevcmd.bat -arch=x86 -host_arch=x64
|
||||
)
|
||||
|
||||
:: Loop over all environment variables and make them global.
|
||||
for /f "delims== tokens=1,2" %%a in ('set') do (
|
||||
echo>>"%GITHUB_ENV%" %%a=%%b
|
||||
)
|
||||
|
||||
- name: Checking out MM:Source
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: alliedmodders/metamod-source
|
||||
ref: ${{ matrix.mm_branch }}
|
||||
path: metamod-${{ matrix.mm_version }}
|
||||
|
||||
- name: Checking out AMBuild
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: Accelerator74/ambuild
|
||||
path: ambuild
|
||||
|
||||
- name: Setting up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.x'
|
||||
|
||||
- name: Setting up ambuild
|
||||
working-directory: ambuild
|
||||
run: python setup.py install
|
||||
|
||||
- name: Checking out hl2sdk-l4d
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: alliedmodders/hl2sdk
|
||||
ref: l4d
|
||||
path: hl2sdk-l4d
|
||||
|
||||
- name: Checking out own repository
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: Tickrate-Enabler
|
||||
|
||||
- name: Compiling Tickrate-Enabler files
|
||||
working-directory: Tickrate-Enabler
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
python ../configure.py --enable-optimize --sdks="l4d" --mms-path="${{ github.workspace }}/metamod-${{ matrix.mm_version }}"
|
||||
ambuild
|
||||
|
||||
- name: Uploading package
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: Tickrate-Enabler-l4d-${{ env.GITHUB_SHA_SHORT }}
|
||||
path: Tickrate-Enabler/build/package
|
Loading…
Reference in New Issue
Block a user