fixing the workflows

This commit is contained in:
Kbz-8
2024-01-03 00:07:38 +01:00
parent ea87c32051
commit 6e284fb9bc
4 changed files with 11 additions and 11 deletions

View File

@@ -37,6 +37,6 @@ jobs:
- name: Build MacroLibX - name: Build MacroLibX
run: make -j && make fclean && make -j DEBUG=true run: make -j && make fclean && make -j DEBUG=true
# Build the test # Build the example
- name: Build Test - name: Build Example
run: cd test && bash ./build.sh run: cd example && bash ./build.sh

View File

@@ -37,7 +37,7 @@ jobs:
- 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=true -j
# Build the test # Build the example
- name: Build Test - name: Build Example
run: cd test && bash ./build.sh run: cd example && bash ./build.sh

View File

@@ -43,7 +43,7 @@ jobs:
- name: Build MacroLibX - name: Build MacroLibX
run: make -j && make fclean && make DEBUG=true -j run: make -j && make fclean && make DEBUG=true -j
# Build the test # Build the example
- name: Build Test - name: Build Example
run: cd test && bash ./build.sh run: cd example && bash ./build.sh

View File

@@ -58,6 +58,6 @@ jobs:
- name: Build MacroLibX - name: Build MacroLibX
run: xmake --yes run: xmake --yes
# Build the test # Build the example
- name: Build Test - name: Build Example
run: xmake build --yes Test run: xmake build --yes Test