845c20ad93
* Start using Github Actions Build on windows and linux. Cannot build for macos, since the builders only support xcode 10+ which dropped x86 support. * Build sourcepawn tooling as separate package Upload build artifacts containing only spcomp and the includes. This adds a new `--scripting-only` flag to configure.py which skips everything and goes straight to building spcomp and packaging the include folder with it. * Only run the workflows for the master branch * Split common operations into PackageHelpers file Don't duplicate the code for packaging releases for the tooling-only packages. Instead use a common `PackageHelpers` class which provides the functionality common to both packages. This replaces the explicit list of files to package with a directory scan, so we don't have to list them all. The pgsql sql-init-scripts were missing from the release package before, so they were added here as well. Three scripts from the testsuite were missing from the explicit list (mapdisplayname, floats, findmap), so they're now included. * Fix Python 2 compatibility os.scandir is Python 3 only.
79 lines
2.3 KiB
YAML
79 lines
2.3 KiB
YAML
name: SourcePawn scripting
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'plugins/include/*'
|
|
- 'sourcepawn/**'
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '53 05 01 */3 *' # Artifacts expire every 3 months
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
include:
|
|
- os: ubuntu-latest
|
|
os_short: linux
|
|
- os: windows-latest
|
|
os_short: win
|
|
- os: macos-latest
|
|
os_short: mac
|
|
fail-fast: false
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
ARCH: x86,x86_64
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
# Setup Python for AMBuild
|
|
- uses: actions/setup-python@v2
|
|
name: Setup Python 3.8
|
|
with:
|
|
python-version: 3.8
|
|
- name: Install AMBuild
|
|
run: |
|
|
python -m pip install --upgrade pip setuptools wheel
|
|
pip install git+https://github.com/alliedmodders/ambuild
|
|
|
|
- name: Build only for x64 on macOS
|
|
if: startsWith(runner.os, 'macOS')
|
|
run: echo "ARCH=x86_64" >> $GITHUB_ENV
|
|
|
|
- name: Install Linux dependencies
|
|
if: startsWith(runner.os, 'Linux')
|
|
run: |
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt-get update
|
|
sudo apt-get install -y --no-install-recommends \
|
|
gcc-multilib g++-multilib libstdc++6 lib32stdc++6 \
|
|
libc6-dev libc6-dev-i386 linux-libc-dev \
|
|
linux-libc-dev:i386 lib32z1-dev ${{ matrix.compiler_cc }}
|
|
|
|
- name: Select clang compiler
|
|
if: startsWith(runner.os, 'Linux') || startsWith(runner.os, 'macOS')
|
|
run: |
|
|
echo "CC=clang" >> $GITHUB_ENV
|
|
echo "CXX=clang++" >> $GITHUB_ENV
|
|
clang --version
|
|
clang++ --version
|
|
|
|
- name: Build
|
|
shell: bash
|
|
run: |
|
|
mkdir build
|
|
cd build
|
|
python ../configure.py --enable-optimize --scripting-only --targets=${{ env.ARCH }}
|
|
ambuild
|
|
echo "SM_VERSION=$(cat ../product.version)" >> $GITHUB_ENV
|
|
|
|
- name: Archive tooling
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: sourcemod-tooling-${{ env.SM_VERSION }}-${{ matrix.os_short }}
|
|
path: build/package
|