Skip to content

Commit

Permalink
xx
Browse files Browse the repository at this point in the history
  • Loading branch information
akx committed Feb 2, 2024
1 parent 5a9ef4b commit f687d3c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ jobs:
echo CXX_COMPILER=g++ >> "$GITHUB_ENV"
echo C_COMPILER=gcc >> "$GITHUB_ENV"
fi
if [ "${{ matrix.variant }}" = "CUDA" ]; then
echo "cmake_args=" >> "$GITHUB_OUTPUT"
else if [ "${{ matrix.variant }}" = "NOBLASLT" ]; then
elif [ "${{ matrix.variant }}" = "NOBLASLT" ]; then
echo "cmake_args=-DNO_CUBLASLT=ON" >> "$GITHUB_OUTPUT"
else if [ "${{ matrix.variant }}" = "CPU" ]; then
elif [ "${{ matrix.variant }}" = "CPU" ]; then
echo "-DNO_CUBLASLT=ON -DBUILD_CUDA=OFF" >> "$GITHUB_OUTPUT"
else
echo "Unknown variant" && exit 1
Expand Down

0 comments on commit f687d3c

Please sign in to comment.