ios_net: Add DLP patches to allow .cia reading from sd card, patch region checks #75
Workflow file for this run
This file contains 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-PR | |
on: [pull_request] | |
jobs: | |
clang-format: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: clang-format | |
run: | | |
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source | |
build-binary: | |
runs-on: ubuntu-22.04 | |
needs: clang-format | |
steps: | |
- uses: actions/checkout@v4 | |
- name: build binary | |
run: | | |
docker build . -t builder | |
docker run --rm -v ${PWD}:/project builder make | |
- uses: actions/upload-artifact@master | |
with: | |
name: binary | |
path: "*.rpx" |