PkgTemplates.jl/templates/cirrus.yml

21 lines
533 B
YAML
Raw Normal View History

2019-01-03 16:43:00 +00:00
freebsd_instance:
2019-09-18 15:27:16 +00:00
image: {{{IMAGE}}}
2019-01-03 16:43:00 +00:00
task:
name: FreeBSD
artifacts_cache:
folder: ~/.julia/artifacts
2019-01-03 16:43:00 +00:00
env:
{{#VERSIONS}}
2019-09-18 15:27:16 +00:00
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}}