-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
92a2ca0
commit bc44f4a
Showing
1 changed file
with
117 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
name: Build Extension | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build_ext: | ||
name: Build for ${{ matrix.identifier }} | ||
runs-on: ${{ matrix.os_version }} | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
buildjobs: | ||
- windows-x86 | ||
- linux-latest | ||
|
||
include: | ||
- meta_branch: "1.12-dev" | ||
sm_branch: "1.12-dev" | ||
|
||
- buildjobs: windows-x86 | ||
os_version: windows-latest | ||
identifier: 'Windows Latest (x86)' | ||
msvc_arch: 'x86' | ||
ambuild_target: 'x86' | ||
package_name: 'windows-x86' | ||
|
||
- buildjobs: linux-latest | ||
os_version: ubuntu-latest | ||
identifier: 'Linux Latest (x86, x86-64)' | ||
cc: clang-15 | ||
cxx: clang++-15 | ||
ambuild_target: 'x86,x86_64' | ||
package_name: 'linux-latest' | ||
|
||
steps: | ||
- name: Install Packages (Linux) | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo dpkg --add-architecture i386 | ||
sudo apt-get update | ||
sudo apt-get install -y ${{ matrix.cc }} ${{ matrix.cxx }} g++-multilib | ||
echo "CC=${{ matrix.cc }}" >> $GITHUB_ENV | ||
echo "CXX=${{ matrix.cxx }}" >> $GITHUB_ENV | ||
- name: Install MSVC for ${{ matrix.identifier }} (${{ matrix.msvc_arch }}) | ||
if: runner.os == 'Windows' | ||
uses: microsoft/setup-msbuild@v2 | ||
with: | ||
msbuild-architecture: ${{ matrix.msvc_arch }} | ||
|
||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Setup ambuild | ||
run: | | ||
python -m pip install wheel | ||
pip install git+https://github.com/alliedmodders/ambuild | ||
- name: Fetch Metamod:Source ${{ matrix.meta_branch }} | ||
uses: actions/[email protected] | ||
with: | ||
repository: alliedmodders/metamod-source | ||
ref: ${{ matrix.meta_branch }} | ||
path: mmsource | ||
submodules: recursive | ||
|
||
- name: Fetch SourceMod ${{ matrix.sm_branch }} | ||
uses: actions/[email protected] | ||
with: | ||
repository: alliedmodders/sourcemod | ||
ref: ${{ matrix.sm_branch }} | ||
path: sourcemod | ||
submodules: recursive | ||
|
||
- name: Fetch SDKs | ||
shell: bash | ||
run: | | ||
mkdir -p ${{ github.workspace }}/alliedmodders | ||
cd ${{ github.workspace }}/alliedmodders | ||
git clone --mirror https://github.com/alliedmodders/hl2sdk hl2sdk-proxy-repo | ||
sdks=(tf2 css hl2dm dods bms sdk2013 orangebox l4d l4d2) | ||
for sdk in "${sdks[@]}" | ||
do | ||
git clone hl2sdk-proxy-repo -b $sdk hl2sdk-$sdk | ||
done | ||
- name: Fetch Extension | ||
uses: actions/[email protected] | ||
with: | ||
path: navbot | ||
submodules: recursive | ||
|
||
- name: Build Extension | ||
working-directory: navbot | ||
run: | | ||
mkdir build | ||
cd build | ||
python3 ../configure.py --hl2sdk-root "${{ github.workspace }}/alliedmodders" --sdks=present --sm-path="${{ github.workspace }}/sourcemod" --mms-path="${{ github.workspace }}/mmsource" --enable-optimize --enable-lto --targets "${{ matrix.ambuild_target }}" --symbol-files | ||
ambuild | ||
- name: Get commit SHA | ||
uses: benjlevesque/[email protected] | ||
id: short-sha | ||
|
||
- name: Upload a Build Artifact | ||
uses: actions/[email protected] | ||
with: | ||
name: navbot-${{ matrix.package_name }}-${{ steps.short-sha.outputs.sha }} | ||
path: | | ||
navbot/build/package/* | ||
|
||
|