TEST #80
Workflow file for this run
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 Build | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build-uclibc: | |
| name: UAE4ALL_libretro for Miyoo (uClibc) | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: miyoocfw/toolchain-shared-uclibc | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build | |
| run: make -j$(nproc) -f Makefile.libretro platform=miyoo | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: UAE4ALL_libretro (uClibc) | |
| path: uae4all_libretro.so | |
| if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` | |
| build-musl: | |
| name: UAE4ALL_libretro for Miyoo (musl) | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: miyoocfw/toolchain-shared-musl | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build | |
| run: make -j$(nproc) -f Makefile.libretro platform=miyoo | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: UAE4ALL_libretro (musl) | |
| path: uae4all_libretro.so | |
| if-no-files-found: error # 'error', 'warn', 'ignore'; defaults to `warn` |