From f398126e080b3bd78dbc75947a78cc65146cf48b Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Tue, 12 Dec 2023 18:07:58 +0100 Subject: [PATCH] fixing CI --- .github/workflows/linux_clang.yml | 2 +- .github/workflows/linux_gcc.yml | 2 +- .github/workflows/macos_x86.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux_clang.yml b/.github/workflows/linux_clang.yml index 6bd0e30..5611333 100644 --- a/.github/workflows/linux_clang.yml +++ b/.github/workflows/linux_clang.yml @@ -39,4 +39,4 @@ jobs: # Build the test - name: Build Test - run: cd test && clang main.c ../libmlx.so -lSDL2 + run: cd test && bash ./run.sh diff --git a/.github/workflows/linux_gcc.yml b/.github/workflows/linux_gcc.yml index 6030878..559bb71 100644 --- a/.github/workflows/linux_gcc.yml +++ b/.github/workflows/linux_gcc.yml @@ -39,5 +39,5 @@ jobs: # Build the test - name: Build Test - run: cd test && gcc main.c ../libmlx.so -lSDL2 + run: cd test && bash ./run.sh diff --git a/.github/workflows/macos_x86.yml b/.github/workflows/macos_x86.yml index 217d31f..c64da05 100644 --- a/.github/workflows/macos_x86.yml +++ b/.github/workflows/macos_x86.yml @@ -45,5 +45,5 @@ jobs: # Build the test - name: Build Test - run: cd test && clang main.c ../libmlx.so -lSDL2 + run: cd test && bash ./run.sh