-
-
Notifications
You must be signed in to change notification settings - Fork 33
98 lines (92 loc) · 2.49 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
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
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
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
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
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