diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2020-11-29 15:33:34 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2020-11-30 16:13:51 -0500 |
commit | bd42878b4af4c9e79c834251a9ab7843b29a0dd7 (patch) | |
tree | 355a61eb1ed08d5e241cbf691887edeba6f1cee5 | |
parent | 35ff0a8910cc072d6a020819b33fa840800c2815 (diff) | |
download | bfs-bd42878b4af4c9e79c834251a9ab7843b29a0dd7.tar.xz |
travis: Try the experimental FreeBSD environment
-rw-r--r-- | .cirrus.yml | 14 | ||||
-rw-r--r-- | .travis.yml | 6 | ||||
-rw-r--r-- | README.md | 1 |
3 files changed, 6 insertions, 15 deletions
diff --git a/.cirrus.yml b/.cirrus.yml deleted file mode 100644 index ecd7c7f..0000000 --- a/.cirrus.yml +++ /dev/null @@ -1,14 +0,0 @@ -freebsd_instance: - image_family: freebsd-12-1 - -task: - install_script: | - mount -t fdescfs fdescfs /dev/fd - pkg install -y bash git gmake - ln -s ../usr/local/bin/bash /bin/bash - pw groupadd -n users - pw useradd -n user -g users -s /bin/sh -m - git clone . ~user/bfs - chown -R user:users ~user/bfs - test_script: | - su user -c "gmake -C ~/bfs check" diff --git a/.travis.yml b/.travis.yml index 1516304..e7c64f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,3 +41,9 @@ jobs: env: *linux_env - os: osx + + - os: freebsd + before_script: + - sudo mount -t fdescfs fdescfs /dev/fd + - sudo ln -s ../usr/local/bin/bash /bin/bash + script: gmake distcheck @@ -4,7 +4,6 @@ [![License](http://img.shields.io/badge/license-0BSD-blue.svg)](https://github.com/tavianator/bfs/blob/main/LICENSE) [![Version](https://img.shields.io/github/v/tag/tavianator/bfs?label=version)](https://github.com/tavianator/bfs/releases) [![Travis CI Status](https://api.travis-ci.com/tavianator/bfs.svg?branch=main)](https://travis-ci.com/tavianator/bfs) -[![Cirrus CI Status](https://api.cirrus-ci.com/github/tavianator/bfs.svg)](https://cirrus-ci.com/github/tavianator/bfs) Breadth-first search for your files. |