This commit is contained in:
@@ -3,7 +3,7 @@ run-name: ${{github.event_name}} - Build evk - ${{github.sha}}
|
|||||||
on: [push]
|
on: [push]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
Run tests:
|
Build evk:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
container:
|
container:
|
||||||
@@ -11,6 +11,50 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Cache shaderc
|
||||||
|
id: cache-shaderc
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: cache-shaderc-src
|
||||||
|
with:
|
||||||
|
path: subprojects/shaderc/
|
||||||
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('subprojects/shaderc.wrap', 'subprojects/packagefiles/shaderc/**/*') }}
|
||||||
|
- name: Cache VMA
|
||||||
|
id: cache-vma
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: cache-vma-src
|
||||||
|
with:
|
||||||
|
path: subprojects/vma/
|
||||||
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('subprojects/vma.wrap', 'subprojects/packagefiles/vma/**/*') }}
|
||||||
|
- name: Cache volk
|
||||||
|
id: cache-volk
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: cache-volk-src
|
||||||
|
with:
|
||||||
|
path: subprojects/volk/
|
||||||
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('subprojects/volk.wrap', 'subprojects/packagefiles/volk/**/*') }}
|
||||||
|
- name: Cache SPIRV-Reflect
|
||||||
|
id: cache-spvref
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: cache-spvref-src
|
||||||
|
with:
|
||||||
|
path: subprojects/spvref/
|
||||||
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('subprojects/spvref.wrap', 'subprojects/packagefiles/spvref/**/*') }}
|
||||||
|
- name: Cache GLFW
|
||||||
|
id: cache-glfw
|
||||||
|
uses: actions/cache@v4
|
||||||
|
env:
|
||||||
|
cache-name: cache-glfw-src
|
||||||
|
with:
|
||||||
|
path: subprojects/glfw/
|
||||||
|
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('subprojects/glfw.wrap', 'subprojects/packagefiles/glfw/**/*') }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
- name: Configure
|
- name: Configure
|
||||||
run: meson setup build
|
run: meson setup build
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[wrap-git]
|
[wrap-git]
|
||||||
directory = spvref
|
directory = spvref
|
||||||
url = https://github.com/KhronosGroup/SPIRV-Reflect
|
url = https://github.com/KhronosGroup/SPIRV-Reflect
|
||||||
revision = main
|
revision = vulkan-sdk-1.4.309.0
|
||||||
depth = 1
|
depth = 1
|
||||||
|
|
||||||
patch_directory = spvref
|
patch_directory = spvref
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[wrap-git]
|
[wrap-git]
|
||||||
directory = vma
|
directory = vma
|
||||||
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
|
url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
|
||||||
revision = master
|
revision = v3.3.0
|
||||||
depth = 1
|
depth = 1
|
||||||
|
|
||||||
patch_directory = vma
|
patch_directory = vma
|
||||||
|
|||||||
@@ -1,7 +1,8 @@
|
|||||||
[wrap-git]
|
[wrap-git]
|
||||||
directory = volk
|
directory = volk
|
||||||
url = https://github.com/zeux/volk
|
url = https://github.com/zeux/volk
|
||||||
revision = master
|
revision = vulkan-sdk-1.4.309.0
|
||||||
|
depth = 1
|
||||||
|
|
||||||
patch_directory = volk
|
patch_directory = volk
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user