Skip to content

NOTICK Step to close ports to avoid lingering process bound to ports #5982

NOTICK Step to close ports to avoid lingering process bound to ports

NOTICK Step to close ports to avoid lingering process bound to ports #5982

Workflow file for this run

name: Build PR
# Builds and runs tests on each push to a branch PR'ed against main.
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'design/**'
- 'planning/**'
branches:
- main
jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.20.4
# Makes sure the artifacts are built correctly
- name: Build
run: go build -v ./...
# Makes sure the binaries for the eth2network are avail for all other tests
- name: Download eth2network binaries
run: go test ./... -v -count=1 -run TestEnsureBinariesAreAvail
# Close specified ports using lsof before testing / local port list compiled from ./integration/constants.go
- name: Close Integration Test Ports
run: |
lowest_port=8000
highest_port=58000
additional_ports=(80 81 99)
for pid in $(lsof -iTCP:$lowest_port-$highest_port -sTCP:LISTEN -t); do
echo "Killing process $pid on one of the ports from $lowest_port to $highest_port"
kill -9 $pid || true
done
for port in "${additional_ports[@]}"; do
for pid in $(lsof -ti TCP:$port); do
echo "Killing process $pid on port $port"
kill $pid || true
done
done
- name: Test
run: go test --failfast -v ./... -count=1 -timeout 5m
- name: Store simulation logs
uses: actions/upload-artifact@v3
if: failure()
with:
name: ci-logs
path: |
integration/.build/simulations/sim-log-*.txt
integration/.build/noderunner/noderunner-*.txt
integration/.build/wallet_extension/wal-ext-*.txt
integration/.build/eth2/*
integration/.build/faucet/*
integration/.build/tenscan/*
integration/.build/tengateway/*
integration/.build/contractdeployer/*
integration/.build/smartcontracts/*
retention-days: 1