mirror of
https://github.com/wiiu-env/gdbstub_plugin.git
synced 2024-11-04 19:55:05 +01:00
8163cc55b4
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
32 lines
882 B
YAML
32 lines
882 B
YAML
name: CI-PR
|
|
|
|
on: [ pull_request ]
|
|
|
|
jobs:
|
|
clang-format:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: clang-format
|
|
run: |
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
|
|
build-binary:
|
|
runs-on: ubuntu-22.04
|
|
needs: clang-format
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- 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
|
|
- 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" |