Skip to content

Commit 0aead82

Browse files
committed
Removed nested stages from Jenkins
Signed-off-by: Meet Patel <[email protected]>
1 parent bb322a2 commit 0aead82

File tree

1 file changed

+13
-15
lines changed

1 file changed

+13
-15
lines changed

scripts/Jenkinsfile

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -135,21 +135,19 @@ pipeline {
135135
}
136136
}
137137
stage('Finetune CLI Tests') {
138-
stage('Run QAIC Finetuning Tests') {
139-
steps {
140-
timeout(time: 5, unit: 'MINUTES') {
141-
sh '''
142-
sudo docker exec ${BUILD_TAG} bash -c "
143-
cd /efficient-transformers &&
144-
. preflight_qeff/bin/activate &&
145-
mkdir -p $PWD/cli_qaic_finetuning &&
146-
export TOKENIZERS_PARALLELISM=false &&
147-
export QEFF_HOME=$PWD/cli_qaic_finetuning &&
148-
pytest tests -m '(cli) and (on_qaic) and (not qnn) and (finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log_finetune.xml &&
149-
junitparser merge tests/tests_log_finetune.xml tests/tests_log.xml &&
150-
deactivate"
151-
'''
152-
}
138+
steps {
139+
timeout(time: 5, unit: 'MINUTES') {
140+
sh '''
141+
sudo docker exec ${BUILD_TAG} bash -c "
142+
cd /efficient-transformers &&
143+
. preflight_qeff/bin/activate &&
144+
mkdir -p $PWD/cli_qaic_finetuning &&
145+
export TOKENIZERS_PARALLELISM=false &&
146+
export QEFF_HOME=$PWD/cli_qaic_finetuning &&
147+
pytest tests -m '(cli) and (on_qaic) and (not qnn) and (finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log_finetune.xml &&
148+
junitparser merge tests/tests_log_finetune.xml tests/tests_log.xml &&
149+
deactivate"
150+
'''
153151
}
154152
}
155153
}

0 commit comments

Comments
 (0)