KernelModule/.github/workflows/pr.yml

32 lines
814 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:
2022-09-04 18:02:56 +02:00
runs-on: ubuntu-22.04
2022-02-04 17:35:49 +01:00
steps:
2023-03-28 20:27:17 +02:00
- uses: actions/checkout@v3
2022-02-04 17:35:49 +01:00
- name: clang-format
run: |
2023-03-28 20:28:51 +02:00
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source
2020-08-12 19:55:56 +02:00
build-binary:
2022-09-04 18:02:56 +02:00
runs-on: ubuntu-22.04
2022-02-04 17:35:49 +01:00
needs: clang-format
2020-08-12 19:55:56 +02:00
steps:
2023-03-28 20:27:17 +02:00
- uses: actions/checkout@v3
- name: create version.h
run: |
git_hash=$(git rev-parse --short "$GITHUB_SHA")
cat <<EOF > ./source/version.h
#pragma once
#define MODULE_VERSION_EXTRA " (nightly-$git_hash)"
EOF
2020-08-12 19:55:56 +02: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: "*.wms"