Skip to content
Snippets Groups Projects
Commit 2170cb45 authored by Silas Della Contrada's avatar Silas Della Contrada
Browse files

Updated .gitlab-ci.yml file to use Qt5

parent db86d8c8
No related branches found
No related tags found
No related merge requests found
...@@ -10,12 +10,12 @@ build: ...@@ -10,12 +10,12 @@ build:
script: script:
- mkdir build - mkdir build
- cd build - cd build
- cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake -DCMAKE_BUILD_TYPE=Debug -DQT_VERSION=5 ..
- cmake --build . -j$(nproc) - cmake --build . -j$(nproc)
- cd .. - cd ..
- mkdir build-release - mkdir build-release
- cd build-release - cd build-release
- cmake -DCMAKE_BUILD_TYPE=Release .. - cmake -DCMAKE_BUILD_TYPE=Release -DQT_VERSION=5 ..
- cmake --build . -j$(nproc) - cmake --build . -j$(nproc)
artifacts: artifacts:
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment