This repository has been archived by the owner on Nov 8, 2023. It is now read-only.
archive the yurt-edgex-manager repo #188
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-suite | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
e2e-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.18 | |
- name: Install ginkgo | |
run: sudo apt-get install golang-ginkgo-dev | |
- name: Turn off swap | |
run: sudo swapoff -a | |
- name: Set netfilter conntrack max | |
run: sudo sysctl -w net.netfilter.nf_conntrack_max=131072 | |
- name: Run PR-Blocking e2e tests | |
run: make test-e2e |