aboutsummaryrefslogtreecommitdiffstats
path: root/dtc/.cirrus.yml
diff options
context:
space:
mode:
Diffstat (limited to 'dtc/.cirrus.yml')
-rw-r--r--dtc/.cirrus.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/dtc/.cirrus.yml b/dtc/.cirrus.yml
new file mode 100644
index 000000000..c270a09f3
--- /dev/null
+++ b/dtc/.cirrus.yml
@@ -0,0 +1,23 @@
+env:
+ CIRRUS_CLONE_DEPTH: 1
+
+freebsd_12_task:
+ freebsd_instance:
+ image: freebsd-12-1-release-amd64
+ install_script:
+ pkg install -y bison gmake pkgconf
+ build_script:
+ gmake
+ test_script:
+ gmake check
+
+linux_gcc_task:
+ container:
+ image: gcc:latest
+ install_script:
+ - apt-get update
+ - apt-get -y install bison flex
+ build_script:
+ - make
+ test_script:
+ - make check