-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from bossjones/feature-openssh
Feature: openssh
- Loading branch information
Showing
39 changed files
with
2,957 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
*.term | ||
sshd_log.txt | ||
.DS_Store | ||
.travis.yml | ||
.git | ||
.gitignore | ||
LICENSE | ||
README.md | ||
contributing.md | ||
|
||
# ruby | ||
.bundle/ | ||
.vendor/ | ||
|
||
# arbirtary files | ||
env.log | ||
env_to_change | ||
env_to_change_envvar | ||
temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
*.xterm | ||
sshd_log.txt | ||
|
||
.bundle/ | ||
.vendor/ | ||
|
||
# arbirtary files | ||
env.log | ||
env_to_change | ||
env_to_change_envvar | ||
temp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,10 +43,18 @@ install: | |
- 'sed -i "/build: ./a \ \ privileged: true" docker-compose.yml' | ||
|
||
script: | ||
- travis_retry docker-compose -f docker-compose.yml -f ci_build.yml build | ||
# - travis_retry docker-compose -f docker-compose.yml -f ci_build.yml build | ||
# run goss tests next | ||
- travis_retry docker-compose -f docker-compose.test.yml -f ci_build.yml up --build | ||
|
||
# source: https://github.com/inspirehep/inspire-next/blob/9700274c36074a3e43168bf48b8ba3e3bfa7bcdf/.travis.yml | ||
after_script: | ||
# Killing via SIGTERM in order to trigger atexit and dump coverage information in WSGI | ||
- "docker-compose -f docker-compose.yml kill -s SIGTERM" | ||
|
||
- "docker-compose -f docker-compose.test.yml kill -s SIGTERM" | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- [email protected] | ||
on_success: always # default: change | ||
on_failure: always # default: always |
Oops, something went wrong.