mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 19:12:06 +03:00
49 lines
1.0 KiB
YAML
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
|
|
|