Skip to content

Commit

Permalink
cmake build type in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Aug 1, 2024
1 parent 74e28f0 commit db633b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/pre_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,10 @@ if (process.env.GITHUB_ENV) {
const clblast = `CLBlast_DIR=${exports.clblast}\n`
console.log('Adding ENV', clblast)
await fs.appendFile(process.env.GITHUB_ENV, clblast)

const cmakeBuildType = `CMAKE_BUILD_TYPE=RelWithDebInfo\n`
console.log('Adding ENV', cmakeBuildType)
await fs.appendFile(process.env.GITHUB_ENV, cmakeBuildType)
}

if (hasFeature('older-cpu')) {
Expand Down

0 comments on commit db633b4

Please sign in to comment.