image: debian:8 before_script: - echo "Preparing for the build..." - apt-get update && apt-get install -q -y build-essential qt4-qmake libqt4-dev qt5-qmake qtbase5-dev Qt5: stage: build script: - echo "Building against Qt5..." - cd src - qmake -qt=5 - make Qt4: stage: build script: - echo "Building against Qt4..." - cd src - qmake -qt=4 - make