File tree Expand file tree Collapse file tree 2 files changed +23
-3
lines changed
Expand file tree Collapse file tree 2 files changed +23
-3
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
3840 export VULKAN_SDK=/usr/include/vulkan
3941 premake5 gmake2
4042
43+ - name : Build Meta Generator files
44+ run : |
45+ cd Build
46+ make -j$(nproc) -k Gen-Meta
47+
48+ - name : Run Meta Generator
49+ run : |
50+ META_DIR=/Source/Meta/Meta
51+ rm -rf $META_DIR/Generated
52+ Build/Bin/Engine/${{ matrix.build_type }}/TypeGenerator \
53+ $META_DIR/Source \
54+ $META_DIR/Generated
55+
56+ - name : Re-run Premake
57+ run : |
58+ export VULKAN_SDK=/usr/include/vulkan
59+ premake5 gmake2
60+
4161 - name : Build
4262 run : |
4363 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