Add GitHub workflows for building GoZen #2
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@v3 | |
with: | |
submodules: recursive | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
- name: Setup SCons | |
run: pip install scons | |
- name: Setup FFmpeg | |
run: sudo apt install -y ffmpeg | |
- name: Build | |
run: cd ./src/bin/gde_ffmpeg/ && scons -j 10 target=template_release platform=linux |