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

.travis.yml 1.0 KB

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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
  1. # This will run on Travis' 'new' container-based infrastructure
  2. # Blacklist
  3. branches:
  4. only:
  5. - master
  6. # OS
  7. dist: trusty
  8. sudo: required
  9. # Environment variables
  10. env:
  11. global:
  12. - GH_REPO_NAME: openpose
  13. - DOXYFILE: $TRAVIS_BUILD_DIR/doc/doc_autogeneration.doxygen
  14. # Set this in Environment Variables on travis-ci.org
  15. # - GH_REPO_REF: github.com/<user_name>/openpose.git
  16. # Install dependencies
  17. addons:
  18. apt:
  19. packages:
  20. - doxygen
  21. - doxygen-doc
  22. - doxygen-latex
  23. - doxygen-gui
  24. - graphviz
  25. # Build your code e.g. by calling make
  26. script:
  27. - ./ubuntu/install_cmake.sh
  28. - sudo apt-get -y install libatlas-base-dev
  29. - sudo apt-get -y install libopencv-dev
  30. - pip install --upgrade numpy
  31. - mkdir build
  32. - cd build
  33. - cmake -DBUILD_CAFFE=ON ..
  34. - no_cores=`cat /proc/cpuinfo | grep processor | wc -l`
  35. - make -j${no_cores}
  36. # Generate and deploy documentation
  37. after_success:
  38. - cd $TRAVIS_BUILD_DIR
  39. - chmod +x .github/generate_gh_pages.sh
  40. - ./.github/generate_gh_pages.sh
Tip!

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

Comments

Loading...