GHA: Fix wrong binary name in unit tests
This commit is contained in:
parent
56c3c26572
commit
6ed5bc8203
|
@ -38,7 +38,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
SCONSFLAGS: platform=linuxbsd target=editor arch=x86_64 production=false dev_build=true tests=true verbose=yes warnings=extra werror=yes
|
SCONSFLAGS: platform=linuxbsd target=editor arch=x86_64 production=false dev_build=true tests=true verbose=yes warnings=extra werror=yes
|
||||||
SCONS_CACHE_LIMIT: 7168
|
SCONS_CACHE_LIMIT: 7168
|
||||||
BIN: godot.linuxbsd.editor.dev
|
BIN: godot.linuxbsd.editor.dev.x86_64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Clone Godot
|
- name: Clone Godot
|
||||||
|
@ -95,11 +95,11 @@ jobs:
|
||||||
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
SCONS_CACHE: ${{github.workspace}}/.scons_cache/
|
||||||
run: |
|
run: |
|
||||||
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
|
PATH=${GITHUB_WORKSPACE}/buildroot/bin:$PATH
|
||||||
scons platform=linuxbsd ${{env.SCONSFLAGS}}
|
scons ${{env.SCONSFLAGS}}
|
||||||
ls -l bin/
|
|
||||||
|
|
||||||
- name: Verify build
|
- name: Verify build
|
||||||
run: |
|
run: |
|
||||||
|
ls -l bin/
|
||||||
bin/${{ env.BIN }} --version
|
bin/${{ env.BIN }} --version
|
||||||
bin/${{ env.BIN }} --help
|
bin/${{ env.BIN }} --help
|
||||||
|
|
||||||
|
@ -123,7 +123,7 @@ jobs:
|
||||||
limboai-treeish: ${{ github.sha }}
|
limboai-treeish: ${{ github.sha }}
|
||||||
test-build: true
|
test-build: true
|
||||||
|
|
||||||
macos-build:
|
macos-test-build:
|
||||||
name: 🍎 macOS test build
|
name: 🍎 macOS test build
|
||||||
uses: ./.github/workflows/macos.yml
|
uses: ./.github/workflows/macos.yml
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue