소스 검색

Update .gitlab-ci.yml file

François D 3 년 전
부모
커밋
506affc54b
1개의 변경된 파일5개의 추가작업 그리고 9개의 파일을 삭제
  1. 5 9
      .gitlab-ci.yml

+ 5 - 9
.gitlab-ci.yml

@@ -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