Skip to content

Commit

Permalink
Add go mod tidy to smoketest build
Browse files Browse the repository at this point in the history
  • Loading branch information
plorenz committed Aug 28, 2024
1 parent e97d82b commit 2a65d02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ jobs:
$(go env GOPATH)/bin/ziti-ci configure-git
$(go env GOPATH)/bin/ziti-ci generate-build-info common/version/info_generated.go version
go test ./...
pushd zititest && go install ./... && popd
pushd zititest && go mod tidy && go install ./... && popd
go install -tags=all,tests ./...
- name: Create Test Environment
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
run: |
$(go env GOPATH)/bin/ziti-ci configure-git
$(go env GOPATH)/bin/ziti-ci generate-build-info common/version/info_generated.go version ${ZITI_BASE_VERSION:+--base-version $ZITI_BASE_VERSION}
pushd zititest && go install ./... && popd
pushd zititest && go mod tidy && go install ./... && popd
go install -tags=all,tests ./...
- name: Create Test Environment
Expand Down
5 changes: 5 additions & 0 deletions zititest/models/dtls/configs/router.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ metrics:
reportInterval: 15s
messageQueueSize: 10

transport:
westworld3:
profile_version: 1
#max_segment_sz: 3000

link:
listeners:
- binding: transport
Expand Down

0 comments on commit 2a65d02

Please sign in to comment.