We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d85ec3 + 6c806a7 commit 65957f4Copy full SHA for 65957f4
.ci/unix-build.sh
@@ -0,0 +1,4 @@
1
+#!/bin/sh
2
+mkdir build && cd build
3
+cmake -DCMAKE_BUILD_TYPE=Release ..
4
+cmake --build .
.ci/unix-test.sh
@@ -0,0 +1,6 @@
+cd build
+ctest -E Windows
+if [ -f "test/std_filesystem_test" ]; then
5
+ test/std_filesystem_test || true
6
+fi
.cirrus.yml
@@ -0,0 +1,13 @@
+freebsd_instance:
+ image_family: freebsd-12-1
+
+task:
+ install_script: |
+ pkg install -y cmake
7
+ pw groupadd testgrp
8
+ pw useradd testuser -g testgrp -w none -m
9
+ chown -R testuser:testgrp .
10
+ build_script: |
11
+ sudo -u testuser .ci/unix-build.sh
12
+ test_script: |
13
+ sudo -u testuser .ci/unix-test.sh
0 commit comments