Skip to content

Commit

Permalink
Merge branch 'github-actions' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
reidmv committed Jun 6, 2021
2 parents b1d0b1a + 6d3419a commit 4650849
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/manual-smoke-test-with-debugging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,17 @@ jobs:
uses: luchihoratiu/debug-via-ssh@main
with:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
SSH_PASS: ${{ secrets.SSH_PASS }}
SSH_PASS: ${{ secrets.SSH_PASS }}

- name: 'Provision test cluster'
timeout-minutes: 15
run: |
echo ::group::=== SPEC PREP ===
echo ::group::=== PREP ===
mkdir -p $HOME/.ssh
echo 'Host *' > $HOME/.ssh/config
echo ' ServerAliveInterval 150' >> $HOME/.ssh/config
echo ' ServerAliveCountMax 2' >> $HOME/.ssh/config
buildevents cmd $TRACE_ID $STEP_ID 'rake spec_prep' -- \
bundle exec rake spec_prep
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/manual-smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ jobs:
- name: 'Provision test cluster'
timeout-minutes: 15
run: |
echo ::group::=== SPEC PREP ===
echo ::group::=== PREP ===
mkdir -p $HOME/.ssh
echo 'Host *' > $HOME/.ssh/config
echo ' ServerAliveInterval 150' >> $HOME/.ssh/config
echo ' ServerAliveCountMax 2' >> $HOME/.ssh/config
buildevents cmd $TRACE_ID $STEP_ID 'rake spec_prep' -- \
bundle exec rake spec_prep
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pr-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ jobs:
timeout-minutes: 15
run: |
echo ::group::=== SPEC PREP ===
mkdir -p $HOME/.ssh
echo 'Host *' > $HOME/.ssh/config
echo ' ServerAliveInterval 150' >> $HOME/.ssh/config
echo ' ServerAliveCountMax 2' >> $HOME/.ssh/config
buildevents cmd $TRACE_ID $STEP_ID 'rake spec_prep' -- \
bundle exec rake spec_prep
Expand Down

0 comments on commit 4650849

Please sign in to comment.