Add download notes in README.md #35
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: | |
paths-ignore: | |
- .gitignore | |
- README.md | |
- svenbxt.cfg | |
pull_request: | |
paths-ignore: | |
- .gitignore | |
- README.md | |
- svenbxt.cfg | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 1 * *' # Monthly | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
build_type: [Release] | |
c_compiler: [gcc, cl] | |
include: | |
- os: windows-latest | |
c_compiler: cl | |
cpp_compiler: cl | |
artifact: "svenbxt_windows-cl" | |
bin-path: "src/build/Release/SvenBXT.dll" | |
toolchain-file: "" | |
cmake-generator: "Visual Studio 17 2022" | |
build-target: "-A Win32" # HACK | |
- os: ubuntu-latest | |
c_compiler: gcc | |
cpp_compiler: g++ | |
artifact: "svenbxt_ubuntu-gcc" | |
bin-path: "src/build/libSvenBXT.so" | |
toolchain-file: "cmake/ToolchainLinuxGCC.cmake" | |
cmake-generator: "Unix Makefiles" | |
build-target: "" | |
exclude: | |
- os: windows-latest | |
c_compiler: gcc | |
- os: ubuntu-latest | |
c_compiler: cl | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Checkout submodules | |
shell: bash | |
run: git submodule update --init --recursive | |
- name: Set reusable strings | |
id: strings | |
shell: bash | |
run: | | |
echo "build-output-dir=${{ github.workspace }}/src/build" >> "$GITHUB_OUTPUT" | |
echo "src-dir=${{ github.workspace }}/src" >> "$GITHUB_OUTPUT" | |
- name: Add msbuild to PATH | |
if: runner.os == 'Windows' | |
uses: microsoft/setup-msbuild@v2 | |
- name: Install Ubuntu packages | |
if: runner.os == 'Linux' | |
run: | | |
sudo dpkg --add-architecture i386 | |
sudo apt update || true | |
sudo apt install -y build-essential libc6:i386 g++-multilib mesa-common-dev libgl-dev:i386 libgl1-mesa-dev | |
- name: Configure CMake | |
run: > | |
cmake -G "${{ matrix.cmake-generator }}" | |
${{ matrix.build-target }} | |
-B ${{ steps.strings.outputs.build-output-dir }} | |
-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} | |
-DCMAKE_C_COMPILER=${{ matrix.c_compiler }} | |
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | |
-DCMAKE_TOOLCHAIN_FILE=${{ matrix.toolchain-file }} | |
-DFUNCHOOK_BUILD_TESTS=OFF | |
-S ${{ steps.strings.outputs.src-dir }} | |
- name: Build Linux version | |
if: runner.os == 'Linux' | |
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} | |
- name: Build Windows version | |
if: runner.os == 'Windows' | |
run: msbuild /m /p:OutputPath=${{ steps.strings.outputs.build-output-dir }} /p:Configuration=${{ matrix.build_type }} ${{ steps.strings.outputs.build-output-dir }}/SvenBXT.sln | |
- name: Prepare artifacts | |
run: mkdir -p bin && mv ${{ matrix.bin-path }} bin/ | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ./bin | |
name: ${{ matrix.artifact }} |