add build info to release (#725)
* attempt to add VC_BUILD_NAME * fix * fix * update macos.yml * fix * update macos.yml * update macos.yml * add debug step * update * update * fix release.yml * update cmake * update WindowControl.cpp * update workflows * update release.yml * add --output-always * cleanup
This commit is contained in:
@@ -6,6 +6,11 @@ on:
|
||||
pull_request:
|
||||
branches: [ "main", "dev" ]
|
||||
workflow_call:
|
||||
inputs:
|
||||
build_name:
|
||||
required: true
|
||||
type: string
|
||||
description: 'Build name passed as VC_BUILD_NAME define'
|
||||
|
||||
jobs:
|
||||
build-dmg:
|
||||
@@ -21,7 +26,7 @@ jobs:
|
||||
brew install glfw3 glew libpng openal-soft luajit libvorbis skypjack/entt/entt googletest glm
|
||||
|
||||
- name: Configure
|
||||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_TESTS=ON -DVOXELENGINE_BUILD_APPDIR=1
|
||||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DVOXELENGINE_BUILD_TESTS=ON -DVOXELENGINE_BUILD_APPDIR=1 -DVC_BUILD_NAME="${{ inputs.build_name }}"
|
||||
|
||||
- name: Build
|
||||
run: cmake --build build -t install
|
||||
|
||||
Reference in New Issue
Block a user