2021-10-01 17:42:36 +02:00
|
|
|
name: CI-PR
|
|
|
|
|
|
|
|
on: [pull_request]
|
|
|
|
|
|
|
|
jobs:
|
2022-02-04 15:57:01 +01:00
|
|
|
clang-format:
|
2023-01-11 11:16:10 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 15:57:01 +01:00
|
|
|
steps:
|
2023-01-02 14:16:46 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-04 15:57:01 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-18 14:33:46 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
|
2021-10-01 17:42:36 +02:00
|
|
|
build-binary:
|
2023-01-11 11:16:10 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 15:57:01 +01:00
|
|
|
needs: clang-format
|
2021-10-01 17:42:36 +02:00
|
|
|
steps:
|
2023-01-02 14:16:46 +01:00
|
|
|
- uses: actions/checkout@v3
|
2023-07-21 19:32:27 +02:00
|
|
|
- name: create version.h
|
|
|
|
run: |
|
|
|
|
git_hash=$(git rev-parse --short "${{ github.event.pull_request.head.sha }}")
|
|
|
|
cat <<EOF > ./src/version.h
|
|
|
|
#pragma once
|
|
|
|
#define PLUGIN_VERSION_EXTRA " (nightly-$git_hash)"
|
|
|
|
EOF
|
2021-10-01 17:42:36 +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: "*.wps"
|