More helper functions and first steps towards refactoring #1406
Workflow file for this run
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
name: CI | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 1 * *' # Monthly | |
jobs: | |
build-linux: | |
name: Build on Linux (${{ matrix.configuration }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Release, Debug] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
# We need the full history to find the tag | |
fetch-depth: 0 | |
# We need the tags for the version string | |
- run: git fetch --force --tags | |
- name: Install dependencies | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt-get update | |
sudo apt-get install g++-multilib libboost-dev mesa-common-dev ninja-build libgl-dev:i386 | |
- name: Install Rust | |
run: | | |
rustup toolchain install stable --profile minimal | |
rustup override set stable | |
rustup target add i686-unknown-linux-gnu | |
- name: Generate the build system | |
run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} | |
- name: Build | |
run: cmake --build build | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: BunnymodXT-${{ runner.os }}-${{ matrix.configuration }} | |
path: build/libBunnymodXT.so | |
- name: Prepare Release | |
if: startsWith(github.ref, 'refs/tags/') && matrix.configuration == 'Release' | |
run: | | |
cp build/libBunnymodXT.so . | |
7z a 2-BunnymodXT-${{ runner.os }}.7z libBunnymodXT.so LICENSE | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/') && matrix.configuration == 'Release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: 2-BunnymodXT-${{ runner.os }}.7z | |
draft: true | |
fail_on_unmatched_files: true | |
build-flatpak: | |
name: Build under Flatpak | |
runs-on: ubuntu-latest | |
container: | |
image: bilelmoussaoui/flatpak-github-actions:freedesktop-22.08 | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
# We need the full history to find the tag | |
fetch-depth: 0 | |
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
# We need the tags for the version string | |
- run: git fetch --force --tags | |
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v5 | |
with: | |
manifest-path: build-aux/flatpak/rs.bxt.BunnymodXT.json | |
cache: false | |
build-windows: | |
name: Build on Windows (${{ matrix.configuration }}, COF=${{ matrix.cof }}) | |
runs-on: windows-2019 | |
strategy: | |
fail-fast: false | |
matrix: | |
configuration: [Release, Debug] | |
cof: ['OFF', 'ON'] | |
include: | |
- cof: 'OFF' | |
archive-filename: '1-BunnymodXT-Windows.7z' | |
- cof: 'ON' | |
artifact-label: '-CoFSteam' | |
archive-filename: '3-BunnymodXT-CoFSteam-Windows.7z' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
# We need the full history to find the tag | |
fetch-depth: 0 | |
# We need the tags for the version string | |
- run: git fetch --force --tags | |
- name: Install Rust | |
run: | | |
rustup toolchain install stable --profile minimal | |
rustup override set stable | |
rustup target add i686-pc-windows-msvc | |
- name: Install Boost | |
id: install-boost | |
uses: MarkusJx/[email protected] | |
with: | |
boost_version: 1.78.0 | |
platform_version: 2019 | |
toolset: msvc | |
- name: Generate the build system | |
run: cmake -B build -A Win32 -DCOF=${{ matrix.cof }} | |
env: | |
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }} | |
- name: Build | |
run: cmake --build build --config ${{ matrix.configuration }} -j $env:NUMBER_OF_PROCESSORS | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: BunnymodXT${{ matrix.artifact-label }}-${{ runner.os }}-${{ matrix.configuration }} | |
path: build\${{ matrix.configuration }}\BunnymodXT.dll | |
- name: Prepare Release | |
if: startsWith(github.ref, 'refs/tags/') && matrix.configuration == 'Release' | |
run: | | |
cp build/${{ matrix.configuration }}/BunnymodXT.dll . | |
7z a ${{ matrix.archive-filename }} BunnymodXT.dll LICENSE | |
- name: Release | |
if: startsWith(github.ref, 'refs/tags/') && matrix.configuration == 'Release' | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: ${{ matrix.archive-filename }} | |
draft: true | |
fail_on_unmatched_files: true |