A #236
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: Compile | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
include: | |
- os: macos-latest | |
SETUP: ./setup.sh | |
DOWNLOAD: brew install scons | |
PLATFORM: osx | |
SCONS_OPTIONS: -j3 | |
- os: ubuntu-latest | |
SETUP: ./setup.sh | |
DOWNLOAD: sudo apt update && sudo apt-get install build-essential scons pkg-config | |
PLATFORM: x11 | |
SCONS_OPTIONS: -j2 | |
- os: windows-latest | |
SETUP: .\setup.bat | |
DOWNLOAD: python -m pip install scons==4.5 | |
PLATFORM: windows | |
SCONS_OPTIONS: -j2 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Download Discord Game SDK | |
run: ${{matrix.SETUP}} | |
- name: Download Scons and other build dependencies | |
run: ${{matrix.DOWNLOAD}} | |
- name: Compile Godot-CPP | |
working-directory: godot-cpp | |
run: scons target=template_debug generate_bindings=yes | |
- name: Compile Godotcord | |
run: scons ${{matrix.SCONS_OPTIONS}} |