Skip to content

Commit 4a2fa78

Browse files
committed
Rebased, minor JenkinsScript changes added
Signed-off-by: Dhiraj Kumar Sah <quic_dhirajku@quicinc.com>
1 parent ef9349e commit 4a2fa78

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

scripts/Jenkinsfile

+17
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,23 @@ pipeline {
6666
}
6767
}
6868
}
69+
stage('Run Non-CLI QAIC MultiModal Tests') {
70+
steps {
71+
timeout(time: 60, unit: 'MINUTES') {
72+
sh '''
73+
sudo docker exec ${BUILD_TAG} bash -c "
74+
cd /efficient-transformers &&
75+
. preflight_qeff/bin/activate &&
76+
mkdir -p $PWD/Non_cli_qaic_multimodal &&
77+
export TOKENIZERS_PARALLELISM=false &&
78+
export QEFF_HOME=$PWD/Non_cli_qaic_multimodal &&
79+
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (not qnn)' -n 4 --junitxml=tests/tests_log6.xml &&
80+
junitparser merge tests/tests_log6.xml tests/tests_log.xml &&
81+
deactivate"
82+
'''
83+
}
84+
}
85+
}
6986
}
7087
}
7188
stage('CLI Tests') {

0 commit comments

Comments
 (0)