Fix subtractive drag logic #77
This file contains hidden or 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 |