2016-06-16 19:34:25 +00:00
|
|
|
matrix:
|
2016-06-30 19:58:51 +00:00
|
|
|
fast_finish: true
|
2016-06-16 19:34:25 +00:00
|
|
|
include:
|
2016-07-02 09:32:07 +00:00
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="make"; DOCKER_DIST="debian"
|
|
|
|
services: docker
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
2016-06-16 19:34:25 +00:00
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="deb"; DOCKER_DIST="debian";
|
|
|
|
services: docker
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="deb"; DOCKER_DIST="ubuntu"
|
|
|
|
services: docker
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="rpm"; DOCKER_DIST="fedora"
|
|
|
|
services: docker
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
|
|
|
- os: linux
|
2016-06-30 20:18:00 +00:00
|
|
|
env: GITSECRET_DIST="none"; GITSECRET_GPG_DEP="gnupg"; SECRETS_GPG_COMMAND="gpg"
|
2016-06-16 19:34:25 +00:00
|
|
|
sudo: required
|
|
|
|
language: ruby
|
2016-07-02 13:18:53 +00:00
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="none"; GITSECRET_GPG_DEP="gnupg2"; SECRETS_GPG_COMMAND="gpg2"
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
|
|
|
- os: linux
|
|
|
|
env: GITSECRET_DIST="shellcheck"
|
|
|
|
sudo: required
|
|
|
|
language: ruby
|
2016-06-30 19:58:51 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- debian-sid
|
|
|
|
packages:
|
|
|
|
- shellcheck
|
2016-06-16 19:34:25 +00:00
|
|
|
- os: osx
|
|
|
|
env: GITSECRET_DIST="brew"; GITSECRET_GPG_DEP="gnupg"; SECRETS_GPG_COMMAND="gpg"
|
|
|
|
sudo: false
|
|
|
|
language: generic
|
|
|
|
- os: osx
|
|
|
|
env: GITSECRET_DIST="brew"; GITSECRET_GPG_DEP="gnupg2"; SECRETS_GPG_COMMAND="gpg2"
|
|
|
|
sudo: false
|
|
|
|
language: generic
|
2016-02-21 13:26:17 +00:00
|
|
|
|
2016-06-16 19:34:25 +00:00
|
|
|
before_script:
|
|
|
|
- chmod +x ".ci/before_script.sh" && ".ci/before_script.sh"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
script:
|
2016-06-16 19:34:25 +00:00
|
|
|
- chmod +x ".ci/script.sh" && ".ci/script.sh"
|
|
|
|
|
|
|
|
before_deploy:
|
|
|
|
- chmod +x ".ci/before_deploy.sh" && ".ci/before_deploy.sh"
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
- provider: bintray
|
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
condition: "$GITSECRET_DIST == deb"
|
|
|
|
file: "build/deb_descriptor.json"
|
|
|
|
user: "sobolevn"
|
|
|
|
key: "$BINTRAY_API_KEY"
|
|
|
|
passphrase: "$BINTRAY_GPG_PASS"
|
|
|
|
- provider: bintray
|
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
condition: "$GITSECRET_DIST == rpm"
|
|
|
|
file: "build/rpm_descriptor.json"
|
|
|
|
user: "sobolevn"
|
|
|
|
key: "$BINTRAY_API_KEY"
|
|
|
|
passphrase: "$BINTRAY_GPG_PASS"
|
2016-02-21 13:26:17 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
on_success: never
|
|
|
|
on_failure: change
|