diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 1df4ab199..e802f0bcf 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -5,8 +5,7 @@ on: branches: [ main ] jobs: - - test: + e2e-pr-blocking: runs-on: ubuntu-latest steps: - name: Checkout code @@ -26,5 +25,5 @@ jobs: - name: Set netfilter conntrack max run: sudo sysctl -w net.netfilter.nf_conntrack_max=131072 - - name: run e2e test - run: make test-e2e + - name: Run PR-Blocking e2e tests + run: GINKGO_FOCUS="\[PR-Blocking\]" make test-e2e diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f94f05e8e..ec71e475b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,27 +21,3 @@ jobs: - name: Run test make target run: make test - - - e2e-pr-blocking: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.16 - - - 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: GINKGO_FOCUS="\[PR-Blocking\]" make test-e2e