-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.azure-pipelines.yml
84 lines (77 loc) · 2.69 KB
/
.azure-pipelines.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#--------------------------------------------------------------------------------------------------
# Windows
#--------------------------------------------------------------------------------------------------
#jobs:
#- job: win32
# timeoutInMinutes: 720
# pool:
# vmImage: "windows-latest"
# steps:
# - bash: |
# cd ..
# git clone https://github.com/omega-gg/3rdparty
# cd 3rdparty
# sh generate.sh win32
# cd ../s
# sh build.sh win32
# - publish: $(System.DefaultWorkingDirectory)/deploy
# artifact: Qt-win32
#- job: win64
# timeoutInMinutes: 720
# pool:
# vmImage: "windows-latest"
# steps:
# - bash: |
# cd ..
# git clone https://github.com/omega-gg/3rdparty
# cd 3rdparty
# sh generate.sh win64
# cd ../s
# sh build.sh win64
# - publish: $(System.DefaultWorkingDirectory)/deploy
# artifact: Qt-win64
#--------------------------------------------------------------------------------------------------
# macOS
#--------------------------------------------------------------------------------------------------
#- job: macOS
# timeoutInMinutes: 720
# pool:
# vmImage: "macOS-10.15"
# steps:
# - bash: |
# sh build.sh macOS
# - publish: $(System.DefaultWorkingDirectory)/deploy
# artifact: Qt-macOS
#--------------------------------------------------------------------------------------------------
# Linux
#--------------------------------------------------------------------------------------------------
#- job: linux32
# timeoutInMinutes: 720
# pool:
# vmImage: "ubuntu-latest"
# steps:
# - bash: |
# docker run -d --name ubuntu -v $PWD:/Qt i386/ubuntu:18.04 tail -f /dev/null
# docker exec -t ubuntu bash -c "cd /Qt/..;
# apt-get update;
# apt-get -y install sudo git;
# git clone https://github.com/omega-gg/Qt;
# cd Qt;
# sh build.sh linux"
# - publish: $(System.DefaultWorkingDirectory)/deploy
# artifact: Qt-linux32
#- job: linux64
# timeoutInMinutes: 720
# pool:
# vmImage: "ubuntu-latest"
# steps:
# - bash: |
# docker run -d --name ubuntu -v $PWD:/Qt amd64/ubuntu:18.04 tail -f /dev/null
# docker exec -t ubuntu bash -c "cd /Qt/..;
# apt-get update;
# apt-get -y install sudo git;
# git clone https://github.com/omega-gg/Qt;
# cd Qt;
# sh build.sh linux"
# - publish: $(System.DefaultWorkingDirectory)/deploy
# artifact: Qt-linux64