-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
55 lines (50 loc) · 1.3 KB
/
.cirrus.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
# container:
# image: gcc:latest
# osx_instance:
# image: catalina-xcode
# windows_container:
# image: cirrusci/windowsservercore:2019
# image: microsoft-windows-servercore
# image: microsoft-windows-base-os-images
env:
X: Y
# win_task:
# windows_container:
# image: cirrusci/windowsservercore:2019
# test_script:
# - md build && cd build
# - cmake .. && msbuild
# osx_task:
# osx_instance:
# image: catalina-xcode
# test_script: mkdir build && cd build && cmake .. && make && ctest
linux_task:
container:
matrix:
- image: teeks99/gcc-ubuntu:latest
- image: teeks99/clang-ubuntu:latest
test_script:
- apt update && apt install -y cmake
- mkdir build && cd build && cmake .. && make && ctest
# generic_task:
# container:
# matrix:
# - image: gcc:latest
# - image: rust:latest
# - image: python:latest
# echo_script: echo $USER
# matrix:
# - name: echo
# build_script: echo $HOSTNAME
# - name: gcc-version
# container:
# image: gcc:latest
# test_script: gcc --version
# - name: rust-version
# container:
# image: rust:latest
# test_script: rustc --version
# - name: python-version
# container:
# image: python:latest
# test_script: python --version