Skip to content

Commit

Permalink
Remove build command
Browse files Browse the repository at this point in the history
  • Loading branch information
samjwu committed Jul 26, 2024
1 parent 4b69118 commit 0ea9ece
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .jenkins/staticanalysis.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ import java.nio.file.Path

def runCI =
{
nodeDetails, jobName, buildCommand ->
nodeDetails, jobName ->

def prj = new rocProject('hipFFT-internal', 'PreCheckin')
// customize for project
prj.paths.build_command = buildCommand
prj.libraryDependencies = ['rocRAND','rocFFT']

// Define test architectures, optional rocm version argument is available
Expand All @@ -25,10 +24,9 @@ def runCI =

ci: {
String urlJobName = auxiliary.getTopJobName(env.BUILD_URL)
String hipClangBuildCommand = '-DCMAKE_CXX_COMPILER=/opt/rocm/bin/amdclang++ -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_CLIENTS_TESTS=ON -DBUILD_CLIENTS_SAMPLES=ON -L ../..'

properties(auxiliary.addCommonProperties([pipelineTriggers([cron('0 1 * * 7')])]))
stage(urlJobName) {
runCI([ubuntu22:['any']], urlJobName, hipClangBuildCommand)
runCI([ubuntu22:['any']], urlJobName)
}
}

0 comments on commit 0ea9ece

Please sign in to comment.