- Fixed regression of commit ec7840f36b9bbdd31ca76e27502d639e8d5ca5f6… #2
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: Build Linux | |
on: [push, pull_request] | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: false | |
jobs: | |
# Editor | |
editor-linux: | |
name: Editor (Linux, Development x64) | |
runs-on: "ubuntu-24.04" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev build-essential gettext libtool libtool-bin libpulse-dev libasound2-dev libjack-dev portaudio19-dev | |
- name: Setup Vulkan | |
uses: ./.github/actions/vulkan | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Print .NET info | |
run: | | |
dotnet --info | |
dotnet workload --info | |
- name: Checkout LFS | |
run: | | |
git lfs version | |
git lfs pull | |
- name: Build | |
run: | | |
./Development/Scripts/Linux/CallBuildTool.sh -build -log -printSDKs -dotnet=8 -arch=x64 -platform=Linux -configuration=Development -buildtargets=FlaxEditor | |
# Game | |
game-linux: | |
name: Game (Linux, Release x64) | |
runs-on: "ubuntu-24.04" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install libx11-dev libxcursor-dev libxinerama-dev | |
- name: Setup Vulkan | |
uses: ./.github/actions/vulkan | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.x | |
- name: Print .NET info | |
run: | | |
dotnet --info | |
dotnet workload --info | |
- name: Checkout LFS | |
run: | | |
git lfs version | |
git lfs pull | |
- name: Build | |
run: | | |
./Development/Scripts/Linux/CallBuildTool.sh -build -log -printSDKs -dotnet=8 -arch=x64 -platform=Linux -configuration=Release -buildtargets=FlaxGame |