fix findminizip (it didnt exist in base commit) #208
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/[email protected] | |
with: | |
source: 'primedev' | |
exclude: 'primedev/include primedev/thirdparty primedev/wsockproxy' | |
extensions: 'h,cpp' | |
clangFormatVersion: 16 | |
style: file |