From 3aa3db0330629997694583090fba926d91770cb1 Mon Sep 17 00:00:00 2001 From: arjun-raj-kuppala <60718144+arjun-raj-kuppala@users.noreply.github.com> Date: Wed, 16 Feb 2022 21:00:38 +0530 Subject: [PATCH] Update HIPCC build instructions --- .jenkins/Jenkinsfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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") {