Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Jenkinsfile 708 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  1. pipeline {
  2. agent any
  3. environment {
  4. CI = 'true'
  5. }
  6. stages {
  7. stage('Run every time?') {
  8. steps {
  9. echo 'hi from every branch, not in a container.'
  10. }
  11. }
  12. stage('Check Download Data') {
  13. /*
  14. agent {
  15. docker {
  16. image 'joyzoursky/python-chromedriver'
  17. }
  18. */
  19. when {
  20. branch 'csv_dl_preparation'
  21. }
  22. steps {
  23. echo 'hi from only csv_dl_preparation'
  24. echo 'problem with import pause'
  25. // sh 'export PYTHONPATH=$WORKSPACE:$PYTHONPATH'
  26. // sh '$PATH'
  27. sh 'pip install -r requirements.txt'
  28. sh 'python scripts/csv_dl_preparation/download_and_check_csvs.py'
  29. }
  30. }
  31. }
  32. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...