Merge pull request #120 from lessui-hq/feature/fix-retroid-flip2-lid #338
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: Platform Builds | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| build: | |
| name: Build ${{ matrix.platform }} | |
| runs-on: sprinters:aws:ubuntu-24.04-arm:c7gd.xlarge | |
| strategy: | |
| matrix: | |
| platform: [miyoomini, tg5040] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y jq | |
| - name: Build ${{ matrix.platform }} | |
| run: make PLATFORM=${{ matrix.platform }} build |