Use VU0_VECTORs and ASM code #21
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
| name: CI | |
| on: | |
| push: | |
| pull_request: | |
| repository_dispatch: | |
| types: [run_build] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| container: ${{ github.repository_owner }}/ps2sdk:latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apk add build-base git | |
| - name: Compile project | |
| run: | | |
| make -j $(getconf _NPROCESSORS_ONLN) clean | |
| make -j $(getconf _NPROCESSORS_ONLN) all | |
| make -j $(getconf _NPROCESSORS_ONLN) install | |
| - name: Compile tests | |
| run: | | |
| cd tests | |
| make -j $(getconf _NPROCESSORS_ONLN) clean | |
| make -j $(getconf _NPROCESSORS_ONLN) all |