diff options
| author | 2021-11-10 00:54:13 -0500 | |
|---|---|---|
| committer | 2021-11-10 00:54:13 -0500 | |
| commit | beb08eb751fa8e1f72042f263316ab5e5ddb596d (patch) | |
| tree | 3b00df983527648bdae610ac7b88cb639b1f1828 /gulrak-filesystem/.cirrus.yml | |
| parent | fbc30002ab3438356c0476e70c4577a0310d52c0 (diff) | |
New upstream version 2.4.0+dfsg.upstream/2.4.0+dfsgupstream
Diffstat (limited to 'gulrak-filesystem/.cirrus.yml')
| -rw-r--r-- | gulrak-filesystem/.cirrus.yml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gulrak-filesystem/.cirrus.yml b/gulrak-filesystem/.cirrus.yml new file mode 100644 index 0000000..9766476 --- /dev/null +++ b/gulrak-filesystem/.cirrus.yml @@ -0,0 +1,35 @@ +freebsd_task: + freebsd_instance: + image_family: freebsd-12-1 + install_script: | + pkg install -y cmake + pw groupadd testgrp + pw useradd testuser -g testgrp -w none -m + chown -R testuser:testgrp . + build_script: | + sudo -u testuser .ci/unix-build.sh + test_script: | + sudo -u testuser .ci/unix-test.sh + +centos7_task: + container: + image: centos:7 + install_script: | + yum install -y centos-release-scl + yum install -y devtoolset-9 + curl -L https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.tar.gz | tar xzvf - -C /usr/local --strip-components 1 + build_script: | + source /opt/rh/devtoolset-9/enable && PATH=$PATH:/usr/local/bin .ci/unix-build.sh + test_script: | + PATH=$PATH:/usr/local/bin .ci/unix-test.sh + +centos8_task: + container: + image: centos:8 + install_script: | + yum group install -y "Development Tools" + curl -L https://github.com/Kitware/CMake/releases/download/v3.16.4/cmake-3.16.4-Linux-x86_64.tar.gz | tar xzvf - -C /usr/local --strip-components 1 + build_script: | + PATH=$PATH:/usr/local/bin .ci/unix-build.sh + test_script: | + PATH=$PATH:/usr/local/bin .ci/unix-test.sh
\ No newline at end of file |
