-
-
Notifications
You must be signed in to change notification settings - Fork 33
185 lines (176 loc) · 5.04 KB
/
actions.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
name: ActionsCI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@main
- name: Homebrew
run: brew install qt6
- name: build
run: |
qmake CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
./cpi tests/optional.cpp
./cpi tests/if_initializer.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu24-qt6-gcc:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends g++ make qmake6 qt6-base-dev qt6-base-dev-tools
- name: build
run: |
qmake6 CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
./cpi tests/optional.cpp
./cpi tests/if_initializer.cpp
./cpi tests/ranges.cpp
./cpi tests/concept_add.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu24-qt6-clang:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt purge -y gcc g++
sudo apt-get install -y --no-install-recommends clang make qmake6 qt6-base-dev qt6-base-dev-tools
- name: build
run: |
qmake6 -spec linux-clang CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
./cpi tests/optional.cpp
./cpi tests/if_initializer.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu22-qt6-gcc:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends g++ make qmake6 qt6-base-dev qt6-base-dev-tools
- name: build
run: |
qmake6 CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
./cpi tests/optional.cpp
./cpi tests/if_initializer.cpp
./cpi tests/ranges.cpp
./cpi tests/concept_add.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu22-qt6-clang:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt purge -y gcc g++
sudo apt-get install -y --no-install-recommends clang make qmake6 qt6-base-dev qt6-base-dev-tools
- name: build
run: |
qmake6 -spec linux-clang CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
./cpi tests/optional.cpp
./cpi tests/if_initializer.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu20-qt5-gcc:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt-get install -y --no-install-recommends g++ make qtbase5-dev qt5-default qt5-qmake
- name: build
run: |
qmake CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true
ci-ubuntu20-qt5-clang:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@main
- name: apt
run: |
sudo apt-get update -qq
sudo apt purge -y gcc g++
sudo apt-get install -y --no-install-recommends clang make qtbase5-dev qt5-default qt5-qmake
- name: build
run: |
qmake -spec linux-clang CONFIG+=release
make
- name: tests
run: |
./cpi tests/helloworld.cpp
./cpi tests/sqrt.cpp 7
./cpi tests/fibonacci.cpp 10
./cpi tests/unique_ptr.cpp
- name: error tests
run: |
./cpi tests/error_code.cpp
continue-on-error: true