2022-05-19 08:51:26 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
2022-07-05 12:45:36 +00:00
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/Build.yml'
|
|
|
|
- 'src/**.cc'
|
|
|
|
- 'src/**.h'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- '**/*.cmake'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- '.github/workflows/Build.yml'
|
|
|
|
- 'src/**.cc'
|
|
|
|
- 'src/**.h'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- '**/*.cmake'
|
2022-05-19 08:51:26 +00:00
|
|
|
|
|
|
|
defaults:
|
2022-07-05 12:45:36 +00:00
|
|
|
run:
|
|
|
|
shell: bash
|
2022-05-19 08:51:26 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-07-05 21:09:22 +00:00
|
|
|
static-analysis:
|
|
|
|
name: Static analysis
|
2022-05-19 08:51:26 +00:00
|
|
|
|
2022-07-05 12:45:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-19 08:51:26 +00:00
|
|
|
|
2022-07-05 21:09:22 +00:00
|
|
|
steps:
|
2022-07-05 12:45:36 +00:00
|
|
|
- name: Install
|
2022-07-05 21:09:22 +00:00
|
|
|
run: |
|
|
|
|
sudo apt update
|
2022-06-08 19:36:39 +00:00
|
|
|
sudo apt install cppcheck
|
2022-05-19 08:51:26 +00:00
|
|
|
|
2022-07-05 12:45:36 +00:00
|
|
|
- name: Clone
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: cppcheck
|
2022-07-05 21:09:22 +00:00
|
|
|
run: cppcheck --std=c++17 src/
|
|
|
|
|
|
|
|
linux:
|
|
|
|
name: Linux (${{ matrix.arch }})
|
|
|
|
|
|
|
|
runs-on: ubuntu-20.04
|
2022-07-05 12:45:36 +00:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-07-05 21:09:22 +00:00
|
|
|
arch:
|
|
|
|
- x86
|
|
|
|
- x64
|
2022-07-05 12:45:36 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
uses: actions/checkout@v3
|
2022-06-08 19:36:39 +00:00
|
|
|
|
2022-07-05 21:09:22 +00:00
|
|
|
- name: Dependencies (x86)
|
|
|
|
if: matrix.arch == 'x86'
|
|
|
|
run: |
|
|
|
|
sudo dpkg --add-architecture i386
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install --allow-downgrades libpcre2-8-0=10.34-7
|
|
|
|
sudo apt install g++-multilib libsdl2-dev:i386 zlib1g-dev:i386
|
|
|
|
|
|
|
|
- name: Dependencies (x64)
|
|
|
|
if: matrix.arch == 'x64'
|
|
|
|
run: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install libsdl2-dev zlib1g-dev
|
|
|
|
|
|
|
|
- name: Cache cmake build
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: linux-${{ matrix.arch }}-cmake-v1
|
|
|
|
|
|
|
|
- name: Configure (x86)
|
|
|
|
if: matrix.arch == 'x86'
|
|
|
|
run: |
|
|
|
|
cmake \
|
|
|
|
-B build \
|
|
|
|
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
-D CMAKE_TOOLCHAIN_FILE=cmake/toolchain/Linux32.cmake \
|
|
|
|
# EOL
|
|
|
|
|
|
|
|
- name: Configure (x64)
|
|
|
|
if: matrix.arch == 'x64'
|
|
|
|
run: |
|
|
|
|
cmake \
|
|
|
|
-B build \
|
|
|
|
-D CMAKE_BUILD_TYPE=RelWithDebInfo \
|
|
|
|
# EOL
|
2022-06-08 19:36:39 +00:00
|
|
|
|
2022-07-05 12:45:36 +00:00
|
|
|
- name: Build
|
2022-07-05 21:09:22 +00:00
|
|
|
run: |
|
|
|
|
cmake --build build -j $(nproc)
|
|
|
|
|
|
|
|
- name: Upload
|
2022-07-05 12:45:36 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2022-07-05 21:09:22 +00:00
|
|
|
name: fallout2-ce-linux-${{ matrix.arch }}
|
|
|
|
path: build/fallout2-ce
|
2022-07-05 12:45:36 +00:00
|
|
|
retention-days: 7
|
|
|
|
|
|
|
|
macos:
|
2022-07-05 21:09:22 +00:00
|
|
|
name: macOS
|
|
|
|
|
2022-07-06 08:25:10 +00:00
|
|
|
runs-on: macos-11
|
2022-07-05 12:45:36 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Dependencies
|
|
|
|
run: |
|
|
|
|
brew install sdl2
|
|
|
|
|
2022-07-05 21:09:22 +00:00
|
|
|
- name: Cache cmake build
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: macos-cmake-v1
|
|
|
|
|
|
|
|
- name: Configure
|
|
|
|
run: |
|
|
|
|
cmake -B build -D CMAKE_BUILD_TYPE=RelWithDebInfo
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
|
|
|
cmake --build build -j $(sysctl -n hw.physicalcpu) --target package
|
|
|
|
|
|
|
|
- name: Upload
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: fallout2-ce-macos.dmg
|
|
|
|
path: build/_CPack_Packages/Darwin/DragNDrop/fallout2-ce/fallout2-ce.dmg
|
|
|
|
retention-days: 7
|
|
|
|
|
|
|
|
windows:
|
|
|
|
name: Windows (${{ matrix.arch }})
|
|
|
|
|
|
|
|
runs-on: windows-2019
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- arch: x86
|
|
|
|
generator-platform: Win32
|
|
|
|
- arch: x64
|
|
|
|
generator-platform: x64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Cache cmake build
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
key: windows-${{ matrix.arch }}-cmake-v1
|
|
|
|
|
2022-07-05 12:45:36 +00:00
|
|
|
- name: Configure
|
|
|
|
run: |
|
2022-07-05 21:09:22 +00:00
|
|
|
cmake \
|
|
|
|
-B build \
|
|
|
|
-G "Visual Studio 16 2019" \
|
|
|
|
-A ${{ matrix.generator-platform }} \
|
|
|
|
# EOL
|
2022-07-05 12:45:36 +00:00
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: |
|
2022-07-05 21:09:22 +00:00
|
|
|
cmake \
|
|
|
|
--build build \
|
|
|
|
--config RelWithDebInfo \
|
|
|
|
# EOL
|
2022-07-05 12:45:36 +00:00
|
|
|
|
|
|
|
- name: Upload
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2022-07-05 21:09:22 +00:00
|
|
|
name: fallout2-ce-windows-${{ matrix.arch }}
|
|
|
|
path: build/RelWithDebInfo/fallout2-ce.exe
|
2022-07-05 12:45:36 +00:00
|
|
|
retention-days: 7
|