29 lines
769 B
Plaintext
29 lines
769 B
Plaintext
pipeline {
|
|
agent {
|
|
label 'python' // Uses the Jenkins agent with the label 'python'
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
bat """
|
|
@echo off
|
|
rem Set the path to the workspace directory
|
|
cd C:/Program Files/jenkins-agent/workspace/TS
|
|
|
|
rem Delete the "dist" folder if it exists
|
|
if exist dist rmdir /s /q dist
|
|
|
|
rem Use PyInstaller to compile the Python application into a single executable file
|
|
python -m PyInstaller --onefile main.py
|
|
|
|
rem Move the "resources" folder into the "dist" folder
|
|
move resources dist
|
|
|
|
rem Output a success message
|
|
echo Resources folder was successfully moved to the dist folder.
|
|
"""
|
|
}
|
|
}
|
|
}
|
|
}
|