You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,3 +29,24 @@ with:
29
29
```
30
30
31
31
NOTE: currently this aciton only supports windows and linux (if someone needs mac please let me know)
32
+
33
+
NOTE 2: not all Vulkan SDK releases are available for all platforms -- if you need to differentiate by platform the recommended approach is use separate jobs (which can then have separate `vulkan-version`s). However, it is also possible to specify os-specific SDK versions by adding (`-linux`|`-windows`) suffix to the version key:
34
+
```yaml
35
+
setup-both-with-versions:
36
+
strategy:
37
+
matrix:
38
+
runs-on: [ubuntu-latest, windows-latest]
39
+
runs-on: ${{ matrix.runs-on }}
40
+
steps:
41
+
- uses: actions/checkout@v2
42
+
- uses: humbletim/setup-vulkan-sdk@v1
43
+
with:
44
+
vulkan-version-linux: 1.2.154.0
45
+
vulkan-version-windows: 1.2.154.1
46
+
- name: Test Vulkan SDK Install
47
+
shell: bash
48
+
run: |
49
+
echo "Vulkan SDK downloaded from '$VULKAN_SDK_URL'"
0 commit comments