-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
54 lines (49 loc) · 948 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Commented out temporarily
# stages:
# - setup
# - build
# setup windows:
# stage: setup
# tags:
# - windows
# script:
# # TODO: Work out how to get MSYS 2, CMake and Qt 5
# - choco install qt5
# setup linux:
# stage: setup
# tags:
# - docker
# image: ubuntu:latest
# script:
# # TODO: Do I need sudo
# - apt-get update
# - apt-get install build-essential
# - apt-get install cmake
# - apt-get install qt5-default
# build windows:
# stage: build
# tags:
# - windows
# script:
# - mkdir build
# - cd build
# - cmake -G "MSYS Makefiles" ..
# # TODO: Use "make install"
# - make
# artifacts:
# paths:
# - install/
# build linux:
# stage: build
# tags:
# docker
# image: ubuntu:latest
# script:
# - mkdir build
# - cd build
# - cmake ..
# # TODO: Use "make install"
# - make
# artifacts:
# paths:
# - install/