mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 00:43:54 +08:00
* Renable athena test
* debug
* Revert "debug"
This reverts commit 30f68055f8ea047ba4e2989d63a5020e0468487f.
* Specify correct pythonpath for tests
Co-authored-by: Andy <andyh2@me.com>
old-commit-hash: 960b42c523
27 lines
541 B
Groovy
27 lines
541 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'python:3.7.3'
|
|
args '--user=root'
|
|
}
|
|
|
|
}
|
|
environment {
|
|
COMMA_JWT = credentials('athena-test-jwt')
|
|
}
|
|
stages {
|
|
stage('EON Build/Test') {
|
|
steps {
|
|
lock(resource: "", label: 'eon', inversePrecedence: true, variable: 'eon_name', quantity: 1){
|
|
timeout(time: 30, unit: 'MINUTES') {
|
|
dir(path: 'release') {
|
|
sh 'pip install paramiko'
|
|
sh 'python remote_build.py'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|