From 10622e194ba053790a26c2072923c1d24e759b73 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Mon, 24 Jun 2024 20:24:51 -0300 Subject: [PATCH] CI: enable vulkan tests on linux --- .github/workflows/main.yml | 40 +++++++++++++++++++------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ab866a494..9a0c6db43 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -101,26 +101,26 @@ jobs: with: name: test-output-linux-opengles-${{ steps.report2.outputs.conclusion }} path: test-output-linux-opengles.zip -# # linux vulkan tests -# - name: Run Test Suite (vulkan) -# env: -# LOVE_GRAPHICS_DEBUG: 1 -# run: | -# ./love-${{ github.sha }}.AppImage love2d-${{ github.sha }}/testing/main.lua --all --isRunner --renderers vulkan -# - name: Love Test Report (vulkan) -# uses: ellraiser/love-test-report@main -# with: -# name: Love Testsuite Linux -# title: test-report-linux-vulkan -# path: love2d-${{ github.sha }}/testing/output/lovetest_all.md -# - name: Zip Test Output (vulkan) -# run: | -# 7z a -tzip test-output-linux-vulkan.zip love2d-${{ github.sha }}/testing/output/ -# - name: Artifact Test Output (vulkan) -# uses: actions/upload-artifact@v4 -# with: -# name: test-output-linux-vulkan -# path: test-output-linux-vulkan.zip + # linux vulkan tests + - name: Run Test Suite (vulkan) + env: + LOVE_GRAPHICS_DEBUG: 1 + run: | + ./love-${{ github.sha }}.AppImage love2d-${{ github.sha }}/testing/main.lua --all --isRunner --renderers vulkan + - name: Love Test Report (vulkan) + uses: ellraiser/love-test-report@main + with: + name: Love Testsuite Linux + title: test-report-linux-vulkan + path: love2d-${{ github.sha }}/testing/output/lovetest_all.md + - name: Zip Test Output (vulkan) + run: | + 7z a -tzip test-output-linux-vulkan.zip love2d-${{ github.sha }}/testing/output/ + - name: Artifact Test Output (vulkan) + uses: actions/upload-artifact@v4 + with: + name: test-output-linux-vulkan + path: test-output-linux-vulkan.zip - name: Stop xvfb and openbox # should always stop xvfb and openbox even if other steps failed if: always()