mirror of
https://github.com/R2Northstar/NorthstarLauncher
synced 2026-08-23 20:26:04 -04:00
60 lines
1.8 KiB
YAML
60 lines
1.8 KiB
YAML
name: CI
|
|
on: [push, pull_request]
|
|
|
|
env:
|
|
BUILD_PROFILE: Release
|
|
NORTHSTAR_VERSION: 0.0.0.${{github.run_number}}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-2022
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'true'
|
|
- name: Setup msvc
|
|
uses: ilammy/msvc-dev-cmd@v1
|
|
- name: Configure cmake
|
|
run: cmake -G "Ninja" -DCMAKE_BUILD_TYPE:STRING="${{ env.BUILD_PROFILE }}"
|
|
- name: Setup resource file version
|
|
shell: bash
|
|
run: |
|
|
sed -i 's/DEV/${{ env.NORTHSTAR_VERSION }}/g' primedev/primelauncher/resources.rc
|
|
sed -i 's/DEV/${{ env.NORTHSTAR_VERSION }}/g' primedev/resources.rc
|
|
FILEVERSION=$(echo ${{ env.NORTHSTAR_VERSION }} | tr '.' ',' | sed -E 's/-rc[0-9]+//' | tr -d '[:alpha:]')
|
|
sed -i "s/0,0,0,1/${FILEVERSION}/g" primedev/ns_version.h
|
|
- name: Build
|
|
run: cmake --build .
|
|
- name: Extract Short Commit Hash
|
|
id: extract
|
|
shell: bash
|
|
run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
|
|
- name: Upload Build Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: NorthstarLauncher-${{ steps.extract.outputs.commit }}
|
|
path: |
|
|
game/
|
|
|
|
format-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: DoozyX/clang-format-lint-action@v0.16.2
|
|
with:
|
|
source: 'primedev'
|
|
exclude: 'primedev/include primedev/thirdparty primedev/wsockproxy'
|
|
extensions: 'h,cpp'
|
|
clangFormatVersion: 16
|
|
style: file
|
|
|
|
format-check-cmake-files:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: puneetmatharu/cmake-format-lint-action@v1.0.4
|
|
with:
|
|
args: "--in-place"
|
|
- run: |
|
|
git diff --exit-code
|