Skip to content

Commit

Permalink
Merge pull request #2 from bossjones/feature-openssh
Browse files Browse the repository at this point in the history
Feature: openssh
  • Loading branch information
bossjones authored Jun 30, 2017
2 parents 3f226cd + 09b6dd9 commit 66d7894
Show file tree
Hide file tree
Showing 39 changed files with 2,957 additions and 163 deletions.
19 changes: 19 additions & 0 deletions .dockerignore
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
11 changes: 11 additions & 0 deletions .gitignore
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
14 changes: 11 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading

0 comments on commit 66d7894

Please sign in to comment.