build@c++23 #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow require self-hosted by @halx99 personal machine, so only support trigger manually | |
| name: debian | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| - release/* | |
| paths: | |
| - '.github/workflows/debian.yml' | |
| workflow_dispatch: | |
| inputs: | |
| cxxstd: | |
| # actions run ID | |
| description: 'Please input cxxstd, example: 23' | |
| # Default value if no value is explicitly provided | |
| default: '23' | |
| # Input has to be provided for the workflow to run | |
| required: false | |
| env: | |
| __1K_CXXSTD: '${{ inputs.cxxstd }}' | |
| run-name: 'build@c++${{ inputs.cxxstd || 23 }}' | |
| jobs: | |
| android-arm64-aab: | |
| runs-on: debian-13 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build | |
| shell: pwsh | |
| run: ./tools/cmdline/axmol -p android -a arm64 -t 'cpp-tests' -aab | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: android-arm64-aab | |
| path: | | |
| templates/**/*.aab | |
| tests/**/*.aab |