File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed
Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 99
1010 strategy :
1111 fail-fast : false
12+ matrix :
13+ build_type : [Debug]
1214
1315 steps :
1416 - uses : actions/checkout@v4
4244 export VULKAN_SDK=/usr/include/vulkan
4345 premake5 gmake2
4446
47+ - name : Build Meta Generator files
48+ run : |
49+ cd Build
50+ make -j$(nproc) -k Gen-Meta
51+
52+ - name : Run Meta Generator
53+ run : |
54+ META_DIR=Submodules/Engine/Source/Meta/Meta
55+ rm -rf $META_DIR/Generated
56+ Build/Bin/AssetConverter/Engine/${{ matrix.build_type }}/TypeGenerator \
57+ $META_DIR/Source \
58+ $META_DIR/Generated
59+
60+ - name : Re-run Premake
61+ run : |
62+ export VULKAN_SDK=/usr/include/vulkan
63+ premake5 gmake2
64+
4565 - name : Build
4666 run : |
4767 cd Build
Original file line number Diff line number Diff line change 55 workflow_dispatch :
66
77jobs :
8- call-windows-build :
9- name : Windows Build
10- uses : ./.github/workflows/win-build.yml
8+ # call-windows-build:
9+ # name: Windows Build
10+ # uses: ./.github/workflows/win-build.yml
1111
1212 call-linux-build :
1313 name : Linux Build
You can’t perform that action at this time.
0 commit comments