Added Jenkinsfile (#2)

* Initial commit

* added GTFS export code from enhancer

* setup function and router

* update .gitignore

* call configure_enhancer_services

* /export endpoint

* test_gtfs.py

* Fixed leading '/' in router.py

* Added route_color and route_text_color

* Removed logging.conf

* Added Jenkinsfile

* Publish to PyPI

---------

Co-authored-by: Francia Csaba <cf@gerhardt.io>
This commit is contained in:
frsaba 2024-03-21 15:45:34 +01:00 committed by GitHub
parent dc81db9c68
commit 075c5c63f0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

48
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,48 @@
pipeline {
agent any
environment {
GITEA_CREDS = credentials('AMARILLO-JENKINS-GITEA-USER')
PYPI_CREDS = credentials('AMARILLO-JENKINS-PYPI-USER')
TWINE_REPO_URL = "https://git.gerhardt.io/api/packages/amarillo/pypi"
}
stages {
stage('Create virtual environment') {
steps {
echo 'Creating virtual environment'
sh '''python3 -m venv .venv
. .venv/bin/activate'''
}
}
stage('Installing requirements') {
steps {
echo 'Installing packages'
sh 'python3 -m pip install -r requirements.txt'
sh 'python3 -m pip install --upgrade build'
sh 'python3 -m pip install --upgrade twine'
}
}
stage('Build') {
steps {
echo 'Cleaning up dist directory'
dir("dist") {
deleteDir()
}
echo 'Building package'
sh 'python3 -m build'
}
}
stage('Publish package to GI') {
steps {
sh 'python3 -m twine upload --skip-existing --verbose --repository-url $TWINE_REPO_URL --username $GITEA_CREDS_USR --password $GITEA_CREDS_PSW ./dist/*'
}
}
stage('Publish package to PyPI') {
when {
branch 'main'
}
steps {
sh 'python3 -m twine upload --verbose --username $PYPI_CREDS_USR --password $PYPI_CREDS_PSW ./dist/*'
}
}
}
}