Update Portuguese locale #115
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: build PRs | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
jobs: | |
clang-format: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: clang-format | |
run: | | |
git submodule update --init --recursive | |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -e ./src/gtitles.c -e ./src/SDL_FontCache.c -e ./include/SDL_FontCache.h -r ./src ./include | |
build-binary: | |
name: build-binary | |
runs-on: ubuntu-24.04 | |
needs: clang-format | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: build artifacts | |
run: | | |
docker build . -t builder | |
docker run --rm -v ${PWD}:/project builder python3 build.py | |
- name: Upload Aroma version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NUSspli-Aroma-DEBUG | |
path: out/Aroma-DEBUG/* | |
if-no-files-found: error | |
- name: Upload Lite version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NUSspli-Lite-DEBUG | |
path: out/Lite-DEBUG/* | |
if-no-files-found: error | |
- name: Upload Channel version | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NUSspli-Channel-DEBUG | |
path: out/Channel-DEBUG/* | |
if-no-files-found: error |