Skip to content

Commit

Permalink
Create veirfy-app.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
halx99 authored Mar 3, 2025
1 parent a546bdd commit dfbdbf5
Showing 1 changed file with 153 additions and 0 deletions.
153 changes: 153 additions & 0 deletions .github/workflows/veirfy-app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
name: verify-app

on:
workflow_dispatch:

jobs:
win32:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol
winuwp:
# build uwp debug avoid github CI fail with memory issue
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol -p winuwp
win32-clang:
runs-on: windows-latest
env:
# Test winsdk < 10.0.22000.0 (missing C11 standard stdalign.h), axmol will auto fallback to C99 for resolving compiling issue.
WINSDK_VER: '10.0.19041.0'
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol -cc clang
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
echo -e "y" | ./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol
osx-arm64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol
osx-x64:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol
android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol -p android
ios:
runs-on: macos-latest
strategy:
matrix:
target_os:
- ios
- tvos
env:
TARGET_OS: ${{ matrix.target_os }}
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol -p $env:TARGET_OS
wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'recursive'
- name: Build
shell: pwsh
run: |
git clone --branch dev https://github.com/axmolengine/axmol.git
cd axmol
./setup.ps1
axmol new HelloCpp
cd HelloCpp
axmol -p wasm

0 comments on commit dfbdbf5

Please sign in to comment.