Skip to content

subnet/etcd: unify the two subnet watch loops #2413

subnet/etcd: unify the two subnet watch loops

subnet/etcd: unify the two subnet watch loops #2413

Workflow file for this run

name: e2e tests for flannel
on: pull_request
permissions:
contents: read
jobs:
e2e-test:
name: test
runs-on: ubuntu-latest
timeout-minutes: 90
steps:
- name: Set up Go 1.x
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e #v7.0.0
with:
go-version: ^1.25
- name: Check out code into the Go module directory
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 #v7.0.1
- name: set up modules
run: sudo modprobe br_netfilter overlay
- name: Run tests
id: testing
continue-on-error: true
run: git fetch --unshallow --all --tags && make test 2>&1 > errors.txt
- name: Show additional logs
if: steps.testing.outcome != 'success'
run: |
cat errors.txt
exit 1