hurl/.travis.yml
Fabrice Reix 3cfff728e8 add check
2020-09-19 21:17:25 +02:00

49 lines
1.0 KiB
YAML

language: rust
sudo: true
rust:
- 1.46.0
jobs:
include:
- os: linux
dist: bionic
before_script:
- ci/setup.sh
script:
- ci/check.sh
- ./build.sh
- export PATH="$PWD/target/debug:$PATH"
- integration/integration.sh
- os: linux
dist: bionic
before_script:
- export VERSION=$(grep '^version' Cargo.toml | cut -f2 -d'"')
script:
- ci/man.sh
- ci/release.sh
- ci/create_tarball.sh linux
- ci/deb.sh
deploy:
provider: script
script: ci/deploy.sh
skip_cleanup: true
on:
all_branch: true
tags: true
- os: osx
before_script:
- export VERSION=$(grep '^version' Cargo.toml | cut -f2 -d'"')
script:
- ci/man.sh
- ci/release.sh
- ci/create_tarball.sh osx
deploy:
provider: script
script: ci/deploy.sh
skip_cleanup: true
on:
all_branch: true
tags: true