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

appveyor.yml 1.4 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
  1. image: Visual Studio 2017
  2. clone_folder: c:\openpose
  3. build_script:
  4. - mkdir build
  5. - cd build
  6. - cmake -DGPU_MODE=CPU_ONLY -G "Visual Studio 15 2017 Win64" ..
  7. - cmake --build . --config "Release"
  8. after_build:
  9. - ps: cd ..
  10. - ps: mkdir artifacts
  11. - ps: mkdir artifacts/bin
  12. - ps: mkdir artifacts/examples
  13. - ps: mkdir artifacts/examples/media
  14. - ps: mkdir artifacts/include
  15. - ps: mkdir artifacts/lib
  16. - ps: Get-ChildItem -Path build/x64/Release/*.exe -Recurse -File | Copy-Item -Destination artifacts/bin
  17. - ps: Get-ChildItem -Path build/x64/Release/*.dll -Recurse -File | Copy-Item -Destination artifacts/bin
  18. - ps: Get-ChildItem -Path build/bin/*.dll -Recurse -File | Copy-Item -Destination artifacts/bin
  19. - ps: Get-ChildItem -Path examples/media/* -Recurse -File | Copy-Item -Destination artifacts/examples/media
  20. - ps: Copy-Item include/openpose -Recurse -Destination artifacts/include/
  21. - ps: Copy-Item 3rdparty/windows/opencv/include/opencv2 -Recurse -Destination artifacts/include/
  22. - ps: Get-ChildItem -Path build/*.lib -Recurse -File | Copy-Item -Destination artifacts/lib
  23. - ps: Get-ChildItem -Path 3rdparty/*.lib -Recurse -File | Copy-Item -Destination artifacts/lib
  24. - ps: Copy-Item models -Recurse -Destination artifacts/
  25. - ps: cd artifacts
  26. - ps: 7z a ..\openpose.zip .
  27. - ps: cd ..
  28. artifacts:
  29. - path: openpose.zip
  30. name: OpenPose
Tip!

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

Comments

Loading...