2021-01-01 01:39:28 +01:00
|
|
|
name: CI-Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-01-09 16:09:38 +01:00
|
|
|
- main
|
2021-01-01 01:39:28 +01:00
|
|
|
|
|
|
|
jobs:
|
2022-02-04 16:35:35 +01:00
|
|
|
clang-format:
|
2023-01-07 16:18:54 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 16:35:35 +01:00
|
|
|
steps:
|
2023-01-07 16:19:20 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-04 16:35:35 +01:00
|
|
|
- name: clang-format
|
|
|
|
run: |
|
2023-03-16 15:27:11 +01:00
|
|
|
docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./src
|
2021-01-01 01:39:28 +01:00
|
|
|
build-binary:
|
2023-01-07 16:18:54 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2022-02-04 16:35:35 +01:00
|
|
|
needs: clang-format
|
2021-01-01 01:39:28 +01:00
|
|
|
steps:
|
2023-01-07 16:19:20 +01:00
|
|
|
- uses: actions/checkout@v3
|
2022-10-09 13:06:03 +02:00
|
|
|
- name: create version.h
|
|
|
|
run: |
|
|
|
|
git_hash=$(git rev-parse --short "$GITHUB_SHA")
|
|
|
|
cat <<EOF > ./src/version.h
|
|
|
|
#pragma once
|
|
|
|
#define VERSION_EXTRA " (nightly-$git_hash)"
|
|
|
|
EOF
|
2021-01-01 01:39:28 +01: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: "*.wms"
|
|
|
|
deploy-binary:
|
|
|
|
needs: build-binary
|
2023-01-07 16:18:54 +01:00
|
|
|
runs-on: ubuntu-22.04
|
2021-01-01 01:39:28 +01:00
|
|
|
steps:
|
|
|
|
- name: Get environment variables
|
|
|
|
id: get_repository_name
|
|
|
|
run: |
|
|
|
|
echo REPOSITORY_NAME=$(echo "$GITHUB_REPOSITORY" | awk -F / '{print $2}' | sed -e "s/:refs//") >> $GITHUB_ENV
|
|
|
|
echo DATETIME=$(echo $(date '+%Y%m%d-%H%M%S')) >> $GITHUB_ENV
|
|
|
|
- uses: actions/download-artifact@master
|
|
|
|
with:
|
|
|
|
name: binary
|
|
|
|
- name: zip artifact
|
2022-01-30 17:05:28 +01:00
|
|
|
run: zip -r ${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip *.wms
|
2021-01-01 01:39:28 +01:00
|
|
|
- name: Create Release
|
2023-01-07 16:19:57 +01:00
|
|
|
uses: "softprops/action-gh-release@v1"
|
2021-01-01 01:39:28 +01:00
|
|
|
with:
|
|
|
|
tag_name: ${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
|
|
|
|
draft: false
|
|
|
|
prerelease: true
|
2023-01-07 16:19:57 +01:00
|
|
|
generate_release_notes: true
|
|
|
|
name: Nightly-${{ env.REPOSITORY_NAME }}-${{ env.DATETIME }}
|
|
|
|
files: |
|
|
|
|
./${{ env.REPOSITORY_NAME }}_${{ env.DATETIME }}.zip
|