From 1ef45ebba2aeaa3dd2a34792bfa9cc097b2082e9 Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Wed, 3 Jan 2024 00:07:38 +0100 Subject: [PATCH] fixing the workflows --- .github/workflows/linux_clang.yml | 6 +++--- .github/workflows/linux_gcc.yml | 6 +++--- .github/workflows/macos_x86.yml | 6 +++--- .github/workflows/windows.yml | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/linux_clang.yml b/.github/workflows/linux_clang.yml index e882a62..0081cc4 100644 --- a/.github/workflows/linux_clang.yml +++ b/.github/workflows/linux_clang.yml @@ -37,6 +37,6 @@ jobs: - name: Build MacroLibX run: make -j && make fclean && make -j DEBUG=true - # Build the test - - name: Build Test - run: cd test && bash ./build.sh + # Build the example + - name: Build Example + run: cd example && bash ./build.sh diff --git a/.github/workflows/linux_gcc.yml b/.github/workflows/linux_gcc.yml index 3ababd5..9a0be87 100644 --- a/.github/workflows/linux_gcc.yml +++ b/.github/workflows/linux_gcc.yml @@ -37,7 +37,7 @@ jobs: - name: Build MacroLibX run: make TOOLCHAIN=gcc -j && make fclean && make TOOLCHAIN=gcc DEBUG=true -j - # Build the test - - name: Build Test - run: cd test && bash ./build.sh + # Build the example + - name: Build Example + run: cd example && bash ./build.sh diff --git a/.github/workflows/macos_x86.yml b/.github/workflows/macos_x86.yml index 0d1312f..42e8af3 100644 --- a/.github/workflows/macos_x86.yml +++ b/.github/workflows/macos_x86.yml @@ -43,7 +43,7 @@ jobs: - name: Build MacroLibX run: make -j && make fclean && make DEBUG=true -j - # Build the test - - name: Build Test - run: cd test && bash ./build.sh + # Build the example + - name: Build Example + run: cd example && bash ./build.sh diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 4d44976..83c5cc3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -58,6 +58,6 @@ jobs: - name: Build MacroLibX run: xmake --yes - # Build the test - - name: Build Test + # Build the example + - name: Build Example run: xmake build --yes Test