forked from robertguetzkow/libtrashcan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.cirrus.yml
32 lines (29 loc) · 1.66 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
BSD_task:
freebsd_instance:
image: freebsd-12-1-release-amd64
prepare_script: pkg install -y cmake && mkdir build
configure_script: cd ./build && cmake ..
build_script: cmake --build ./build --config Debug
test_script: echo "Wenn ist das Nunstueck git und Slotermeyer? Ja! Beiherhund das Oder die Flipperwaldt gersput!" > test.txt && ./build/example $CIRRUS_WORKING_DIR/test.txt
macOS_task:
osx_instance:
image: catalina-xcode
prepare_script: brew install cmake && mkdir build
configure_script: cd ./build && cmake ..
build_script: cmake --build ./build --config Debug
test_script: echo "Wenn ist das Nunstueck git und Slotermeyer? Ja! Beiherhund das Oder die Flipperwaldt gersput!" > test.txt && ./build/example $CIRRUS_WORKING_DIR/test.txt
Linux_task:
container:
image: ubuntu:latest
prepare_script: export DEBIAN_FRONTEND=noninteractive && apt update && apt install -y build-essential && apt install -y cmake && mkdir build
configure_script: cd ./build && cmake ..
build_script: cmake --build ./build --config Debug
test_script: echo "Wenn ist das Nunstueck git und Slotermeyer? Ja! Beiherhund das Oder die Flipperwaldt gersput!" > test.txt && ./build/example $CIRRUS_WORKING_DIR/test.txt
Windows_task:
windows_container:
image: cirrusci/windowsservercore:cmake
os_version: 2019
prepare_script: mkdir build
configure_script: cd ./build && cmake -G "Visual Studio 15 2017 Win64" ..
build_script: cmake --build ./build --config Debug
test_script: echo "Wenn ist das Nunstueck git und Slotermeyer? Ja! Beiherhund das Oder die Flipperwaldt gersput!" > test.txt && %CIRRUS_WORKING_DIR%/build/Debug/example.exe %CIRRUS_WORKING_DIR%/test.txt