Cache Debian image for Vagrant to speed up the build #51
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
# Workflow to continuously integrate Ansible playbook with e2e test | |
# for the Magic Wormhole backend managed by Least Authority TFA | |
name: Ansible e2e | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/*ansible_e2e.yml' | |
- 'ansible/**' | |
- 'docker/ansible*/*' | |
- 'helpers/bootstrap-deployment.sh' | |
jobs: | |
call-workflow-passing-data: | |
# Call the re-usable Terraform workflow | |
uses: ./.github/workflows/_ansible_e2e.yml | |
with: | |
deployment_user: 'bot-cd' | |
deployment_target: 'base-local' | |
secrets: | |
deployment_ssh_key: ${{ secrets.TEST_SSH_KEY }} |