waitOTGARPEntry to safeguard StartTraffic #45
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: Pull Request | |
on: [pull_request] | |
jobs: | |
check_style: | |
name: Check style against CONTRIBUTING.md | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Perl | |
uses: perl-actions/install-with-cpanm@v1 | |
with: | |
install: | | |
Net::IP | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: IP Addresses Assignment | |
run: | | |
find . -name \*.go -exec ./tools/check_ip_addresses.pl \{} + | |
- name: Allowed File Types | |
run: ./tools/allowed_file_types.sh | |
- name: Enum | |
run: | | |
fail=0 | |
if find . -name \*.go -exec egrep -n '\.Union.*?\([0-9]+\)' \{} + | |
then | |
echo "Please do not use numerical constants in a union." >&2 | |
echo "See CONTRIBUTING.md#enum" >&2 | |
fail=1 | |
fi | |
if find . -name \*.go -exec egrep -n '_Union\([0-9]+\)' \{} + | |
then | |
echo "Please do not use numerical constants in a union." >&2 | |
echo "See CONTRIBUTING.md#enum" >&2 | |
fail=1 | |
fi | |
exit "${fail}" | |
- name: Default NetworkInstance | |
run: | | |
if find . -name \*.go -exec egrep -n '"default"' \{} + | |
then | |
echo "Default network instance name should be uppercase." >&2 | |
echo "See CONTRIBUTING.md#default-network-instance" >&2 | |
exit 1 | |
fi | |
static_analysis: | |
name: Static Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.19' | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/go/pkg/mod | |
~/.cache/go-build | |
~/.cache/staticcheck | |
key: ${{ github.job }}-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ github.job }}-${{ runner.os }}-go-build- | |
- name: Go vet | |
run: GOGC=30 go vet ./... | |
- name: Gofmt | |
run: | | |
# gofmt always returns true, so we use grep '^' which returns | |
# true on non-empty output, but will otherwise passthrough all | |
# output lines. | |
if gofmt -d -s . | grep '^'; then | |
exit 1 | |
fi | |
- name: Get goimports | |
run: go install golang.org/x/tools/cmd/goimports@latest | |
- name: Goimports | |
run: | | |
# goimports always returns true, so we use grep '^' which returns | |
# true on non-empty output, but will otherwise passthrough all | |
# output lines. | |
# | |
# goimports does not support "gofmt -s" so both goimports and gofmt are | |
# required. | |
if goimports -d . | grep '^'; then | |
exit 1 | |
fi | |
- name: Get revive | |
run: go install github.com/mgechev/revive@latest | |
- name: Run revive | |
run: revive ./... | |
- name: Get staticcheck | |
run: go install honnef.co/go/tools/cmd/staticcheck@latest | |
- name: Run staticcheck | |
run: GOGC=30 staticcheck ./... | |
otg_changes: | |
name: OTG Changes Required | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check if OTG changes required | |
uses: actions/github-script@v6 | |
with: | |
script: | | |
const script = require('./.github/workflows/required_otg_changes_check.js') | |
await script({github, context, core}) |