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
4648 export VULKAN_SDK=/usr/include/vulkan
4749 premake5 gmake2
4850
51+ - name : Build Meta Generator files
52+ run : |
53+ cd Build
54+ make -j$(nproc) -k Gen-Meta
55+
56+ - name : Run Meta Generator
57+ run : |
58+ META_DIR=Submodules/Engine/Source/Meta/Meta
59+ rm -rf $META_DIR/Generated
60+ Build/Bin/Game/Engine/${{ matrix.build_type }}/TypeGenerator \
61+ $META_DIR/Source \
62+ $META_DIR/Generated
63+
64+ - name : Re-run Premake
65+ run : |
66+ export VULKAN_SDK=/usr/include/vulkan
67+ premake5 gmake2
68+
4969 - name : Build
5070 run : |
5171 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