.gitlab-ci.yml 789 B

12345678910111213141516171819202122232425262728
  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: gcc
  6. build:
  7. stage: build
  8. # instead of calling g++ directly you can also use some build toolkit like make
  9. # install the necessary build tools when needed
  10. before_script:
  11. - apt update && apt -y install make autoconf qt5-default qt5-qmake
  12. script:
  13. - qmake
  14. - make
  15. artifacts:
  16. paths:
  17. - mybinary
  18. # depending on your build setup it's most likely a good idea to cache outputs to reduce the build time
  19. # cache:
  20. # paths:
  21. # - "*.o"
  22. # run tests using the binary built before
  23. test:
  24. stage: test
  25. script:
  26. - ./runmytests.sh