Skip to content

Commit

Permalink
remove explicit creation of build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Mustaballer committed Aug 15, 2024
1 parent a1c62a7 commit b635326
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion .github/workflows/build_hip_basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/build_libraries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b635326

Please sign in to comment.