2021-10-09 00:58:55 +02:00
|
|
|
name: CI-PR
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-07-26 08:16:27 +02:00
|
|
|
clang-format:
|
2022-09-20 20:35:41 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-07-26 08:16:27 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: clang-format
|
|
|
|
run: |
|
|
|
|
docker run --rm -v ${PWD}:/src wiiuenv/clang-format:13.0.0-2 -r ./source
|
2022-07-28 13:46:51 +02:00
|
|
|
check-build-with-logging:
|
2022-09-20 20:35:41 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-07-28 13:46:51 +02:00
|
|
|
needs: clang-format
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: build binary with logging
|
|
|
|
run: |
|
|
|
|
docker build . -t builder
|
|
|
|
docker run --rm -v ${PWD}:/project builder make DEBUG=VERBOSE
|
|
|
|
docker run --rm -v ${PWD}:/project builder make clean
|
|
|
|
docker run --rm -v ${PWD}:/project builder make DEBUG=1
|
2021-10-09 00:58:55 +02:00
|
|
|
build-binary:
|
2022-09-20 20:35:41 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-07-26 08:16:27 +02:00
|
|
|
needs: clang-format
|
2021-10-09 00:58:55 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-07-28 14:33:27 +02:00
|
|
|
- name: create version.h
|
|
|
|
run: |
|
|
|
|
git_hash=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")
|
|
|
|
cat <<EOF > ./source/version.h
|
|
|
|
#pragma once
|
|
|
|
#define VERSION_EXTRA " (nightly-$git_hash)"
|
|
|
|
EOF
|
2021-10-09 00:58:55 +02:00
|
|
|
- name: build binary
|
|
|
|
run: |
|
2022-07-28 14:33:27 +02:00
|
|
|
docker build . -t builder
|
2021-10-09 00:58:55 +02:00
|
|
|
docker run --rm -v ${PWD}:/project builder make
|
|
|
|
- uses: actions/upload-artifact@master
|
|
|
|
with:
|
|
|
|
name: binary
|
2022-09-20 20:29:35 +02:00
|
|
|
path: "*.wuhb"
|