|
@@ -2,14 +2,10 @@
|
|
|
# use the official gcc image, based on debian
|
|
|
# can use verions as well, like gcc:5.2
|
|
|
# see https://hub.docker.com/_/gcc/
|
|
|
-image: gcc
|
|
|
+image: madmanfred/qt5-builder:latest
|
|
|
|
|
|
build:
|
|
|
stage: build
|
|
|
- # instead of calling g++ directly you can also use some build toolkit like make
|
|
|
- # install the necessary build tools when needed
|
|
|
- before_script:
|
|
|
- - apt update && apt -y install make autoconf qt5-default qt5-qmake
|
|
|
script:
|
|
|
- qmake
|
|
|
- make
|
|
@@ -22,7 +18,7 @@ build:
|
|
|
# - "*.o"
|
|
|
|
|
|
# run tests using the binary built before
|
|
|
-test:
|
|
|
- stage: test
|
|
|
- script:
|
|
|
- - ./runmytests.sh
|
|
|
+#test:
|
|
|
+# stage: test
|
|
|
+# script:
|
|
|
+# - ./runmytests.sh
|