martian: fix connection hangs in mitm mode #238
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: E2E | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set version env variables | |
run: | | |
cat .version >> $GITHUB_ENV | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "${{env.GO_VERSION}}" | |
- name: Setup Docker Compose v2 | |
run: curl -fL https://raw.githubusercontent.com/docker/compose-switch/master/install_on_linux.sh | sudo sh | |
- name: Generate certificates | |
run: make -C e2e/certs certs | |
- name: Build Docker image | |
run: make update-devel-image | |
- name: Run e2e test | |
run: make -C e2e run-e2e | |
- name: Docker Compose file | |
if: failure() | |
run: cat e2e/docker-compose.yaml | |
- name: Docker Logs | |
if: failure() | |
run: make -C e2e dump-logs |