We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7d6e7b commit 8b1b4a1Copy full SHA for 8b1b4a1
.github/workflows/ci.yml
@@ -50,6 +50,7 @@ jobs:
50
steps:
51
- uses: actions/checkout@v4
52
- uses: ./
53
+ id: composite
54
with:
55
version: ${{ fromJSON(github.event.inputs.versions)[0] }}
56
cache: false
@@ -75,7 +76,13 @@ jobs:
75
76
dir .\tests\build\test_vulkan.exe
77
echo testing...
78
set PATH=%PATH%;%VULKAN_SDK%/Bin
- .\tests\build\test_vulkan || echo COMPILE TEST ONLY COULD NOT RUN || exit /b 4
79
+ .\tests\build\test_vulkan || echo COMPILE TEST ONLY COULD NOT RUN || exit /b 4
80
+ - name: Setup tmate session on failure
81
+ if: failure()
82
+ uses: mxschmitt/[email protected]
83
+ with:
84
+ limit-access-to-actor: true
85
+
86
87
test-prebuilt-linux:
88
if: ${{ contains(github.event.inputs.extra_tests, 'prebuilt-linux') }}
0 commit comments