Update test test binary path

This commit is contained in:
WarmUpTill 2024-02-24 18:57:07 +01:00 committed by WarmUpTill
parent 534c783bd8
commit 1e43ffef51
2 changed files with 8 additions and 2 deletions

View File

@ -8,6 +8,10 @@ inputs:
description: "Working directory"
required: false
default: ${{ github.workspace }}
config:
description: "Build config"
required: false
default: ""
runs:
using: "composite"
steps:
@ -19,7 +23,7 @@ runs:
echo tests skipped!
exit 0
fi
${{ inputs.workingDirectory }}/build_macos/tests/advanced-scene-switcher-tests
${{ inputs.workingDirectory }}/build_macos/tests/${{ inputs.config }}/advanced-scene-switcher-tests
- name: Run Linux packaging
if: ${{ runner.os == 'Linux' }}
@ -34,4 +38,4 @@ runs:
if: ${{ runner.os == 'Windows' }}
shell: pwsh
run: |
${{ inputs.workingDirectory }}/build_x64/tests/RelWithDebInfo/advanced-scene-switcher-tests.exe
${{ inputs.workingDirectory }}/build_x64/tests/${{ inputs.config }}/advanced-scene-switcher-tests.exe

View File

@ -223,6 +223,7 @@ jobs:
uses: ./.github/actions/run-tests
with:
target: x86_64
config: ${{ needs.check-event.outputs.config }}
- name: Package Plugin 📀
uses: ./.github/actions/package-plugin
@ -295,6 +296,7 @@ jobs:
uses: ./.github/actions/run-tests
with:
target: x64
config: ${{ needs.check-event.outputs.config }}
- name: Package Plugin 📀
uses: ./.github/actions/package-plugin