From 5c8af9c9ff66d6b78eb8e79b8b2cb6b0e7778d85 Mon Sep 17 00:00:00 2001 From: Sasha Szpakowski Date: Tue, 9 Apr 2024 21:29:46 -0300 Subject: [PATCH] CI: test metal --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd7e791d7..1ebbeb69c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -453,7 +453,7 @@ jobs: LOVE_GRAPHICS_DEBUG: 1 run: | ls - love-macos/love.app/Contents/MacOS/love ./testing/main.lua --all --isRunner --renderers opengl + love-macos/love.app/Contents/MacOS/love ./testing/main.lua --all --isRunner --renderers metal - name: Love Test Report id: report1 uses: ellraiser/love-test-report@main @@ -464,16 +464,16 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Zip Test Output run: | - 7z a -tzip test-output-macos-opengl.zip ./testing/output/ + 7z a -tzip test-output-macos-metal.zip ./testing/output/ - name: Artifact Test Output uses: actions/upload-artifact@v4 with: - name: test-output-macos-opengl-${{ steps.report1.outputs.conclusion }} - path: test-output-macos-opengl.zip + name: test-output-macos-metal-${{ steps.report1.outputs.conclusion }} + path: test-output-macos-metal.zip - name: Check Tests Passing if: steps.report1.outputs.conclusion == 'failure' run: | - echo "${{ steps.report1.outputs.failed }} opengl tests failed" + echo "${{ steps.report1.outputs.failed }} metal tests failed" exit 1 iOS-Simulator: runs-on: macos-latest