2020-08-12 18:27:17 +02:00
|
|
|
name: CI-PR
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-02-04 16:25:44 +01:00
|
|
|
clang-format:
|
2022-08-26 21:59:12 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 16:25:44 +01:00
|
|
|
steps:
|
2023-09-05 08:47:44 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-02-04 16:25:44 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-16 12:39:40 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source --exclude ./source/elfio --exclude ./source/utils/json.hpp
|
2022-04-23 09:04:05 +02:00
|
|
|
check-build-with-logging:
|
2022-08-26 21:59:12 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-04-22 23:01:16 +02:00
|
|
|
needs: clang-format
|
|
|
|
steps:
|
2023-09-05 08:47:44 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-04-23 09:04:05 +02:00
|
|
|
- name: build binary with logging
|
2022-04-22 23:01:16 +02:00
|
|
|
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
|
2020-08-12 18:27:17 +02:00
|
|
|
build-binary:
|
2022-08-26 21:59:12 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 16:25:44 +01:00
|
|
|
needs: clang-format
|
2020-08-12 18:27:17 +02:00
|
|
|
steps:
|
2023-09-05 08:47:44 +02:00
|
|
|
- uses: actions/checkout@v4
|
2022-09-19 16:06:38 +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
|
2020-08-12 18:27:17 +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
|
2022-04-23 09:04:05 +02:00
|
|
|
path: "*.wms"
|