config.yml 530 B

12345678910111213141516171819202122232425
  1. version: 2.1
  2. jobs:
  3. compile:
  4. docker:
  5. - image: logicp/ky_gui:1.0.0
  6. steps:
  7. - checkout
  8. - run:
  9. name: compile
  10. command: |
  11. qmake ky_gui.pro -spec linux-g++ CONFIG+=debug CONFIG+=qml_debug && make -j8
  12. - store_artifacts:
  13. path: ky_gui
  14. destination: ky_gui
  15. - run:
  16. name: notify_production
  17. command: |
  18. curl http://artifact.stronglogicsolutions.com/?artifact=ky_gui
  19. workflows:
  20. version: 2
  21. build:
  22. jobs:
  23. - compile