mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 11:05:08 -05:00
Update build debug info action
This commit is contained in:
parent
8903fa0dff
commit
179c3033ba
1 changed files with 16 additions and 14 deletions
30
.github/actions/build-debug-info/action.yml
vendored
30
.github/actions/build-debug-info/action.yml
vendored
|
@ -1,16 +1,18 @@
|
|||
name: Prepare for Build Debug Info
|
||||
name: Prepare for Build Debug Info
|
||||
description: Provides debug info for the build process
|
||||
|
||||
inputs:
|
||||
has-sccache:
|
||||
description: 'Whether the build action has sccache'
|
||||
required: true
|
||||
|
||||
outputs:
|
||||
extra-configure:
|
||||
description: 'Extra stuff for CMake configure step'
|
||||
value: |
|
||||
-DCMAKE_EXPORT_COMPILE_COMMANDS=ON
|
||||
cp ./build/compile_commands.json ./build-debug-info/
|
||||
|
||||
extra-build:
|
||||
description: 'Extra stuff for CMake build step'
|
||||
value: |
|
||||
|
@ -20,17 +22,17 @@ outputs:
|
|||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- name: Prepare
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir ./build-debug-info
|
||||
echo "SCCACHE_ERROR_LOG=$GITHUB_WORKSPACE/build-debug-info/sccache-log.txt" >> $GITHUB_ENV
|
||||
echo "SCCACHE_LOG=debug" >> $GITHUB_ENV
|
||||
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
|
||||
- name: Prepare
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir ./build-debug-info
|
||||
echo "SCCACHE_ERROR_LOG=$GITHUB_WORKSPACE/build-debug-info/sccache-log.txt" >> $GITHUB_ENV
|
||||
echo "SCCACHE_LOG=debug" >> $GITHUB_ENV
|
||||
echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
|
||||
|
||||
- name: Checkout ninjatracing
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: 'nico/ninjatracing'
|
||||
path: ninjatracing
|
||||
submodules: recursive
|
||||
- name: Checkout ninjatracing repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: 'nico/ninjatracing'
|
||||
path: ninjatracing
|
||||
submodules: recursive
|
||||
|
|
Loading…
Reference in a new issue