2020-11-29 12:59:58 +01:00
|
|
|
name: CI-PR
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-02-03 17:21:38 +01:00
|
|
|
clang-format:
|
2022-09-04 18:30:10 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 17:21:38 +01:00
|
|
|
steps:
|
2023-09-04 14:36:38 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-03 17:21:38 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-17 19:02:38 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
|
2020-11-29 12:59:58 +01:00
|
|
|
build-binary:
|
2022-09-04 18:30:10 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-03 17:21:38 +01:00
|
|
|
needs: clang-format
|
2020-11-29 12:59:58 +01:00
|
|
|
steps:
|
2023-09-04 14:36:38 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-11-29 12:59:58 +01:00
|
|
|
- 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: "*.elf"
|