Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/testsuite_oneprocess.sh
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,13 @@ function build() {
make -f cudacpp.mk gtestlibs
fi
# NB: 'make bldall' internally checks if 'which nvcc' and 'which hipcc' succeed before attempting to build cuda and hip
make -j bldall
if [ "${proc##*.}" == "sa" ]; then
# for standalone, just use the makefile (symlinked to cudacpp.mk)
make -j bldall
else
# makefile overlay after removing patches
make -j -f makefile -f cudacpp_overlay.mk bldall
fi
popd >& /dev/null
done
}
Expand Down

This file was deleted.

Loading
Loading