KernelModule/.github/workflows/pr.yml

25 lines
576 B
YAML
Raw Normal View History

2020-08-12 19:55:56 +02:00
name: CI-PR
on: [pull_request]
jobs:
2022-02-04 17:35:49 +01:00
clang-format:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: clang-format
run: |
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source
2020-08-12 19:55:56 +02:00
build-binary:
runs-on: ubuntu-18.04
2022-02-04 17:35:49 +01:00
needs: clang-format
2020-08-12 19:55:56 +02:00
steps:
- uses: actions/checkout@v2
- 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: "*.wms"