diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile index 057f31d..a785c95 100644 --- a/.jenkins/Jenkinsfile +++ b/.jenkins/Jenkinsfile @@ -36,6 +36,20 @@ def hipBuildTest(String backendLabel) { } } + stage("Build - HIPCC") { + // Running the build on HIPCC workspace + dir("${WORKSPACE}/HIPCC") { + sh """#!/usr/bin/env bash + set -x + rm -rf build + mkdir build + cd build/ + cmake .. + make + """ + } + } + stage("Build - Catch2 framework") { // Running the build on hipamd workspace dir("${WORKSPACE}/hipamd") {