Bump the blueprint group across 1 directory with 6 updates #774
Workflow file for this run
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
name: End to end tests | |
on: | |
pull_request_target: | |
types: | |
- closed | |
branches-ignore: | |
- 'dependabot/*' | |
push: | |
tags: | |
- '*' | |
schedule: | |
# Run weekly | |
- cron: '30 15 * * 0' | |
workflow_dispatch: | |
jobs: | |
e2e: | |
name: Run end-to-end tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up | |
run: | | |
sudo sysctl -w vm.max_map_count=262144 | |
sudo echo "ALEPH_SECRET_KEY=batman\n" >> aleph.env | |
echo "${GITHUB_REF}" | |
docker --version | |
docker-compose --version | |
- name: Build e2e image | |
run: make build-e2e | |
- name: Pull and start services | |
run: make services-e2e | |
- name: Run tests | |
run: make e2e | |
- name: Archive test result artifacts | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: test-results | |
path: e2e/test-results/ | |
- name: Dump docker logs on failure | |
uses: jwalton/gh-docker-logs@v2 | |
if: failure() |