mirror of
https://github.com/wiiu-env/ftpiiu_plugin.git
synced 2024-11-04 20:15:09 +01:00
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
|
name: CI-PR
|
||
|
|
||
|
on: [pull_request]
|
||
|
|
||
|
jobs:
|
||
|
clang-format:
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: clang-format
|
||
|
run: |
|
||
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include
|
||
|
check-build-with-logging:
|
||
|
runs-on: ubuntu-22.04
|
||
|
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
|
||
|
build-binary:
|
||
|
runs-on: ubuntu-22.04
|
||
|
needs: clang-format
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: create version.h
|
||
|
run: |
|
||
|
git_hash=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")
|
||
|
cat <<EOF > ./source/wiiu/version.h
|
||
|
#pragma once
|
||
|
#define VERSION_EXTRA " (nightly-$git_hash)"
|
||
|
EOF
|
||
|
- 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: "*.wps"
|