mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-02 08:30:25 +00:00
571c0db190
Co-authored-by: Alexander Batalov <alex.batalov@gmail.com>
70 lines
1.3 KiB
YAML
70 lines
1.3 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/Build.yml'
|
|
- 'src/**.cc'
|
|
- 'src/**.h'
|
|
- '**/CMakeLists.txt'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/Build.yml'
|
|
- 'src/**.cc'
|
|
- 'src/**.h'
|
|
- '**/CMakeLists.txt'
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
jobs:
|
|
|
|
build-windows:
|
|
runs-on: windows-latest
|
|
steps:
|
|
|
|
- name: Clone
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Prepare
|
|
run: cmake -B build/x86-windows -A Win32
|
|
|
|
- name: Release build
|
|
run: cmake --build build/x86-windows --config Release
|
|
|
|
- name: Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: x86-windows-fallout2-ce
|
|
path: |
|
|
build/x86-windows/Release/fallout2-ce.exe
|
|
retention-days: 7
|
|
|
|
build-linux32:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
|
|
- name: Clone
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo dpkg --add-architecture i386
|
|
sudo apt update
|
|
sudo apt install g++-multilib libsdl2-dev:i386 zlib1g-dev:i386
|
|
|
|
- name: Prepare
|
|
run: cmake -DCMAKE_C_FLAGS="-m32" -DCMAKE_CXX_FLAGS="-m32" -B build/x86-linux
|
|
|
|
- name: Release build
|
|
run: cmake --build build/x86-linux --config Release
|
|
|
|
- name: Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: x86-linux-fallout2-ce
|
|
path: |
|
|
build/x86-linux/fallout2-ce
|
|
retention-days: 7
|