LF08/jenkinsfile
2023-04-28 11:53:21 +02:00

35 lines
1005 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.
rem Copy the "dist" folder to the "builds" folder
xcopy dist //Slave/share/Builds /E /I
rem Output a success message
echo The dist folder was successfully copied to the builds folder.
"""
}
}
}
}