From b6353266c2c2971dd9750b92612caa118a0c6744 Mon Sep 17 00:00:00 2001 From: Mustafa Abdulrahman Date: Thu, 15 Aug 2024 11:10:45 -0400 Subject: [PATCH] remove explicit creation of build directory --- .github/workflows/build_applications.yml | 2 +- .github/workflows/build_hip_basic.yml | 3 ++- .github/workflows/build_libraries.yml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_applications.yml b/.github/workflows/build_applications.yml index f3811d1b..4f306a66 100644 --- a/.github/workflows/build_applications.yml +++ b/.github/workflows/build_applications.yml @@ -50,7 +50,7 @@ jobs: - name: Configure and Build shell: bash run: | - cd Applications && mkdir build && cd build + cd Applications cmake -DGPU_ARCHITECTURES=all -S .. cmake --build . -j 4 ctest --output-on-failure diff --git a/.github/workflows/build_hip_basic.yml b/.github/workflows/build_hip_basic.yml index f9a81a6c..b6e29f54 100644 --- a/.github/workflows/build_hip_basic.yml +++ b/.github/workflows/build_hip_basic.yml @@ -48,7 +48,8 @@ jobs: - name: Configure and Build shell: bash run: | - cd HIP-Basic && mkdir build && cd build + cd HIP-Basic cmake -DGPU_ARCHITECTURES=all -S .. cmake --build . -j 4 ctest --output-on-failure + \ No newline at end of file diff --git a/.github/workflows/build_libraries.yml b/.github/workflows/build_libraries.yml index ee6377e5..761ea69c 100644 --- a/.github/workflows/build_libraries.yml +++ b/.github/workflows/build_libraries.yml @@ -55,7 +55,7 @@ jobs: - name: Configure and Build shell: bash run: | - cd Libraries && mkdir build && cd build + cd Libraries cmake -DGPU_ARCHITECTURES=all -S .. cmake --build . -j 4 ctest --output-on-failure