Skip to content

Commit 82d192f

Browse files
plorenzandrewpmartinez
authored andcommitted
Fix circuit test faults. Add GITHUB_TOKEN to validation tests
1 parent 5ca2415 commit 82d192f

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/backward-compatibility.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ jobs:
6464
go install -tags=all,tests ./...
6565
6666
- name: Create Test Environment
67+
env:
68+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6769
shell: bash
6870
run: |
6971
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV"

.github/workflows/validation-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
go install -tags=all,tests ./...
6363
6464
- name: Create Test Environment
65+
env:
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6567
shell: bash
6668
run: |
6769
echo "ZITI_ROOT=$(go env GOPATH)/bin" >> "$GITHUB_ENV"

zititest/models/circuit-test/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ import (
3636
"github.com/openziti/ziti/zititest/zitilab/validations"
3737
)
3838

39-
var DefaultVersion = "v1.7.0"
39+
var DefaultVersion = ""
4040
var ClientRoutersVersion = ""
4141
var HostRoutersVersion = ""
4242

@@ -48,7 +48,7 @@ const (
4848
TestModeHostBackwardsCompatibility = "host-backwards-compatibility"
4949
)
5050

51-
var mode testMode = TestModeHostBackwardsCompatibility
51+
var mode testMode = TestModeDefault
5252

5353
var entityCounts = map[string]uint32{
5454
"loop-client": 1,

0 commit comments

Comments
 (0)