mirror of
https://github.com/sobolevn/git-secret
synced 2024-10-31 21:20:29 +00:00
8b1a01f1f6
The full list of changes: 1. Added `.docker/` folder with Dockerfiles 2. Now `travis` runs integrational tests inside these containers 3. Now `travis` runs tests with `mac os x` 4. Now there are new ways to autodeploy `deb` and `rpm` packages 5. Fixed some issues 6. Also added `.ci/` folder, where utility scripts for travis are stored 7. Moved `git-hooks` into the separate folder: `utils/hooks/` 8. Added new target to the `Makefile` 9. `.gitignore` is updated to ignore `build/` folder and inner files
66 lines
1.7 KiB
YAML
66 lines
1.7 KiB
YAML
matrix:
|
|
include:
|
|
- 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
|
|
env: GITSECRET_DIST="none"; GITSECRET_GPG_DEP="gnupg"; SECRETS_GPG_COMMAND="gpg"
|
|
sudo: required
|
|
language: ruby
|
|
- os: linux
|
|
env: GITSECRET_DIST="none"; GITSECRET_GPG_DEP="gnupg2"; SECRETS_GPG_COMMAND="gpg2"
|
|
sudo: required
|
|
language: ruby
|
|
- 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
|
|
|
|
before_script:
|
|
- chmod +x ".ci/before_script.sh" && ".ci/before_script.sh"
|
|
|
|
script:
|
|
- 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"
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: change
|