Small UI/bug fix #15
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: Build | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| build-wuhb: | |
| runs-on: ubuntu-latest | |
| name: Build WUHB | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: Setup Docker | |
| run: docker build --tag themiify-image . | |
| - name: Build | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: themiify-image | |
| options: --name themiify-container | |
| run: | | |
| powerpc-eabi-cmake -S . -B build | |
| cmake --build build | |
| - name: Copy from container to host | |
| uses: tj-actions/docker-cp@v2 | |
| with: | |
| container: themiify-container | |
| source: /project/build/themiify.wuhb | |
| destination: themiify.wuhb | |
| - name: Upload | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: themiify.wuhb | |
| path: themiify.wuhb | |
| if-no-files-found: error |