PkgTemplates.jl/defaults/cirrus.yml

19 lines
479 B
YAML
Raw Normal View History

2019-01-03 16:43:00 +00:00
freebsd_instance:
image: {{IMAGE}}
2019-01-03 16:43:00 +00:00
task:
name: FreeBSD
env:
{{#VERSIONS}}
JULIA_VERSION: {{.}}
{{/VERSIONS}}
2019-01-03 16:43:00 +00:00
install_script:
- sh -c "$(fetch https://raw.githubusercontent.com/ararslan/CirrusCI.jl/master/bin/install.sh -o -)"
build_script:
- cirrusjl build
test_script:
- cirrusjl test
{{#HAS_COVERAGE}}
2019-01-03 16:43:00 +00:00
coverage_script:
- cirrusjl coverage{{#HAS_CODECOV}} codecov{{/HAS_CODECOV}}{{#HAS_COVERALLS}} coveralls{{/HAS_COVERALLS}}
{{/HAS_COVERAGE}}