Skip to content

Commit ce3b59a

Browse files
authored
Add win prebuilt workflow check ci (#2558)
1 parent 49d7831 commit ce3b59a

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ jobs:
3939
submodules: 'recursive'
4040
- name: Build
4141
shell: pwsh
42-
run: .\tools\cmdline\axmol -p win32 -a x64 && .\tools\cmdline\axmol run -p win32 -a x64 -t unit-tests
42+
run: |
43+
.\tools\cmdline\axmol -p win32 -a x64
44+
.\tools\cmdline\axmol run -p win32 -a x64 -t unit-tests
45+
- name: Check prebuilt workflow
46+
shell: pwsh
47+
run: |
48+
./setup.ps1
49+
axmol new HelloCpp
50+
axmol -d .\HelloCpp -xc '-DAX_PREBUILT_DIR=build'
4351
- uses: actions/upload-artifact@v4
4452
with:
4553
name: windows_x64

0 commit comments

Comments
 (0)