From 95b848f44c3eb06f66148c617028933e3be0c8ba Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 7 Dec 2024 16:15:09 +0300 Subject: [PATCH] replace 'Run engine (headless)' with 'Run engine tests' in AppImage workflow --- .github/workflows/appimage.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/appimage.yml b/.github/workflows/appimage.yml index bac80b19..7eb6b6e3 100644 --- a/.github/workflows/appimage.yml +++ b/.github/workflows/appimage.yml @@ -39,12 +39,13 @@ jobs: - name: Build run: cmake --build build -t install - name: Run tests - run: ctest --test-dir ${{github.workspace}}/build - - name: Run engine (headless) + run: ctest --test-dir build + - name: Run engine tests timeout-minutes: 1 run: | - chmod +x ${{github.workspace}}/build/VoxelEngine - ${{github.workspace}}/build/VoxelEngine --headless --dir ${{github.workspace}}/userdir + chmod +x build/VoxelEngine + chmod +x build/vctest/vctest + build/vctest/vctest -e build/VoxelEngine -d dev/tests -u build --output-always # - name: Build AppImage # uses: AppImageCrafters/build-appimage-action@fe2205a4d6056be47051f7b1b3811106e9814910 # env: