-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove extra quote from ssh_public_key
Nice find by Xiaofeng! Signed-off-by: Colin Walters <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 additions
and
18 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
name: traning E2E | ||
|
||
on: | ||
# schedule: # schedule the job to run every day at midnight | ||
# - cron: '0 * * * *' | ||
schedule: # schedule the job to run every day at midnight | ||
- cron: '0 12 * * *' | ||
|
||
# For testing purposes, will remove | ||
pull_request: | ||
|
@@ -86,7 +86,6 @@ jobs: | |
- name: Provision | ||
run: | | ||
ansible-playbook ./main/training/tests/provision/playbook.yml \ | ||
-v \ | ||
-i terraform-test-environment-module/hosts.ini \ | ||
--private-key=terraform-test-environment-module/${{ steps.terraform-output.outputs.pem_filename }} \ | ||
--extra-vars "image_name=${{ matrix.image_name }}" \ | ||
|
@@ -99,17 +98,16 @@ jobs: | |
- name: Wait for 4 minutes | ||
run: sleep 240 | ||
|
||
# - name: Setup tmate session | ||
# uses: mxschmitt/[email protected] | ||
# timeout-minutes: 15 | ||
# with: | ||
# detached: true | ||
# limit-access-to-actor: true | ||
|
||
- name: Run e2e tests | ||
- name: Setup tmate session | ||
uses: mxschmitt/[email protected] | ||
timeout-minutes: 15 | ||
with: | ||
detached: true | ||
limit-access-to-actor: false | ||
- name: Run tests | ||
run: | | ||
ansible-playbook ./main/training/tests/e2e-tests/playbook.yml \ | ||
-vvvv \ | ||
-i terraform-test-environment-module/hosts.ini \ | ||
--private-key=terraform-test-environment-module/${{ steps.terraform-output.outputs.pem_filename }} \ | ||
--extra-vars "image_name=${{ matrix.image_name }}" \ | ||
|
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
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