.gitlab-ci.yml 599 B

123456789101112131415161718192021222324
  1. # This file is a template, and might need editing before it works on your project.
  2. # use the official gcc image, based on debian
  3. # can use verions as well, like gcc:5.2
  4. # see https://hub.docker.com/_/gcc/
  5. image: madmanfred/qt5-builder:latest
  6. build:
  7. stage: build
  8. script:
  9. - qmake
  10. - make
  11. artifacts:
  12. paths:
  13. - mybinary
  14. # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
  15. # cache:
  16. # paths:
  17. # - "*.o"
  18. # run tests using the binary built before
  19. #test:
  20. # stage: test
  21. # script:
  22. # - ./runmytests.sh