Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create CI/CD test and build in the Github action #523

Merged
merged 21 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: ci
name: CI
on:
push:
branches:
Expand All @@ -14,10 +14,11 @@ concurrency:

jobs:
test-build:
name: Build and test on Go ${{ matrix.go-version }}
runs-on: ubuntu-latest
charleskorn marked this conversation as resolved.
Show resolved Hide resolved
strategy:
matrix:
charleskorn marked this conversation as resolved.
Show resolved Hide resolved
go-version: ['1.20', '1.21.x']
go-version: ['1.20.x', '1.21.x']
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
Expand All @@ -26,15 +27,15 @@ jobs:
go-version: ${{ matrix.go-version }}
- name: Display Go Version
run: go version
- name: mod-check
- name: Run Go mod check
run: make mod-check
- name: lint
- name: Run lint
run: make lint
- name: test
- name: Run test
run: make test
- name: test-benchmarks
- name: Run test benchmarks
run: make test-benchmarks
- name: check-protos
- name: Run check protos and generate Go code from the proto files
charleskorn marked this conversation as resolved.
Show resolved Hide resolved
charleskorn marked this conversation as resolved.
Show resolved Hide resolved
run: |
apt-get update && apt-get -y install unzip
go mod vendor
Expand Down
3 changes: 2 additions & 1 deletion server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -949,7 +949,8 @@ func TestGrpcOverProxyProtocol(t *testing.T) {
var cfg Config
cfg.RegisterFlags(flag.NewFlagSet("", flag.ExitOnError))
cfg.ProxyProtocolEnabled = true
cfg.HTTPListenPort = 8080
// Set this to 0 to have it chooses a random port
lamida marked this conversation as resolved.
Show resolved Hide resolved
cfg.HTTPListenPort = 0

fakeSourceIP := "1.2.3.4"

Expand Down