fallout2-ce/.github/workflows/Build.yml

70 lines
1.3 KiB
YAML
Raw Normal View History

2022-05-19 08:51:26 +00:00
name: Build
on:
push:
paths:
- '.github/workflows/Build.yml'
- 'src/**.cc'
2022-05-19 08:51:26 +00:00
- 'src/**.h'
- '**/CMakeLists.txt'
pull_request:
paths:
- '.github/workflows/Build.yml'
- 'src/**.cc'
2022-05-19 08:51:26 +00:00
- 'src/**.h'
- '**/CMakeLists.txt'
defaults:
run:
shell: bash
jobs:
build-windows:
2022-05-19 08:51:26 +00:00
runs-on: windows-latest
steps:
- name: Clone
uses: actions/checkout@v2
- name: Prepare
run: cmake -B build/x86-windows -A Win32
2022-05-19 08:51:26 +00:00
- name: Release build
run: cmake --build build/x86-windows --config Release
2022-05-19 08:51:26 +00:00
- name: Artifact
uses: actions/upload-artifact@v3
with:
name: x86-windows-fallout2-ce
2022-05-19 08:51:26 +00:00
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
2022-05-19 08:51:26 +00:00
retention-days: 7