Skip to content

Commit

Permalink
Create .cirrus.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pmqs authored Aug 3, 2020
1 parent 0bd5911 commit 10b0594
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
task:
name: FreeBSD
freebsd_instance:
matrix:
# image: freebsd-11-3-release-amd64
image: freebsd-12-1-release-amd64
# image: freebsd-13-0-release-amd64
install_script:
- pkg info
- pkg install -y gcc
- pkg install -y perl5
- perl -V
- echo|cpan App::cpanminus
- cpanm --installdeps .
build_script:
- perl Makefile.PL
test_script:
- make test


task:
name: MacOS
osx_instance:
matrix:
image: catalina-xcode-11.3.1
image: catalina-xcode-11.4.1
# image: catalina-xcode-11.5
install_script:
- perl -V
- echo|sudo cpan App::cpanminus
- sudo /Users/anka/perl5/bin/cpanm --installdeps .
build_script:
- sudo perl Makefile.PL
test_script:
- sudo make test

0 comments on commit 10b0594

Please sign in to comment.