Add GitHub workflows for building GoZen #4
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
on: [push, pull_request] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Setup SCons | |
run: pip install scons | |
- name: Setup Yasm | |
run: sudo apt install -y yasm | |
- name: Build FFmpeg | |
run: pushd ./src/bin/gde_ffmpeg/ && sh ./build-ffmpeg.sh && popd | |
- name: Build GDExtension | |
run: pushd ./src/bin/gde_ffmpeg/ && scons target=template_release platform=linux use_ci=yes && popd | |
- name: Upload GDExtension artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: gdextension-linux | |
path: src/bin/libgozen* | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Setup MSYS2 | |
uses: msys2/setup-msys2@v2 | |
with: | |
msystem: MINGW64 | |
update: true | |
install: >- | |
curl | |
git | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Update pacman | |
shell: msys2 {0} | |
run: pacman -Suy | |
- name: Install stuff | |
shell: msys2 {0} | |
run: pacman -S --noconfirm mingw-w64-cross-binutils mingw-w64-x86_64-toolchain mingw-w64-x86_64-scons mingw-w64-x86_64-yasm diffutils make | |
- name: Build FFmpeg | |
run: pushd ./src/bin/gde_ffmpeg/ && sh ./build-ffmpeg.sh && popd | |
- name: Build GDExtension | |
run: pushd ./src/bin/gde_ffmpeg/ && scons target=template_release platform=linux use_ci=yes && popd | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ffmpeg-windows | |
path: src/bin/libgozen* |