Ass #14
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
| on: | |
| # push: | |
| # branches: [master] | |
| workflow_dispatch: | |
| pull_request: | |
| branches: [master] | |
| name: Ass | |
| jobs: | |
| build: | |
| name: compile apple and android ass then deploy | |
| runs-on: macos-14 | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| steps: | |
| - uses: nttld/setup-ndk@v1 | |
| id: setup-ndk | |
| with: | |
| ndk-version: r21e | |
| add-to-path: false | |
| local-cache: true | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install denpendencies | |
| run: | | |
| ./main.sh install -p ios -l 'harfbuzz fribidi unibreak' | |
| ./main.sh install -p tvos -l 'harfbuzz fribidi unibreak' | |
| ./main.sh install -p macos -l 'harfbuzz fribidi unibreak' | |
| ./main.sh install -p android -l 'harfbuzz fribidi unibreak fontconfig' | |
| - name: One Step | |
| run: .github/workflows/onestep.sh ass all |