🔨 chore(actions): change usage of DEBUG=true to the debug rule

This commit is contained in:
xtrm
2024-04-23 20:42:39 +02:00
parent 7f7b6704ce
commit a7aa05fcbe
3 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ jobs:
# Build the lib # Build the lib
- name: Build MacroLibX - name: Build MacroLibX
run: make -j && make fclean && make -j DEBUG=true run: make -j && make fclean && make debug
# Build the example # Build the example
- name: Build Example - name: Build Example

View File

@@ -35,7 +35,7 @@ jobs:
# Build the lib # Build the lib
- name: Build MacroLibX - name: Build MacroLibX
run: make TOOLCHAIN=gcc -j && make fclean && make TOOLCHAIN=gcc DEBUG=true -j run: make TOOLCHAIN=gcc -j && make fclean && make TOOLCHAIN=gcc debug
# Build the example # Build the example
- name: Build Example - name: Build Example

View File

@@ -35,7 +35,7 @@ jobs:
# Build the lib # Build the lib
- name: Build MacroLibX - name: Build MacroLibX
run: make -j && make fclean && make DEBUG=true -j run: make -j && make fclean && make debug
# Build the example # Build the example
- name: Build Example - name: Build Example