Skip to content

Commit

Permalink
Add 22.06.6 to CI/CD (#62)
Browse files Browse the repository at this point in the history
* Add 22.06.6 to CI/CD
* Minor doc change
  • Loading branch information
tmiddlet2666 authored Oct 18, 2023
1 parent dba94cf commit 70be280
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-compatability-2206.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ jobs:
matrix:
coherenceVersion:
- 22.06.5
- 22.06.6-SNAPSHOT
- 22.06.6
- 22.06.7-SNAPSHOT
go-version:
- 1.19.x
- 1.20.x
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
shell: bash
run: |
go get google.golang.org/grpc/cmd/[email protected]
INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=22.06.4 make clean generate-proto build-test-images test-e2e-standalone
INCLUDE_LONG_RUNNING=true PROFILES=,-jakarta,javax COHERENCE_VERSION=22.06.6 make clean generate-proto build-test-images test-e2e-standalone
- uses: actions/upload-artifact@v3
if: failure()
Expand All @@ -88,7 +88,7 @@ jobs:
shell: bash
run: |
go get google.golang.org/grpc/cmd/[email protected]
COHERENCE_VERSION=22.06.5 PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
COHERENCE_VERSION=22.06.6 PROFILES=,-jakarta,javax,scope make clean generate-proto build-test-images test-e2e-standalone-scope
- uses: actions/upload-artifact@v3
if: failure()
Expand All @@ -103,7 +103,7 @@ jobs:
COHERENCE_TLS_CERTS_PATH=`pwd`/test/utils/certs/guardians-ca.crt \
COHERENCE_TLS_CLIENT_CERT=`pwd`/test/utils/certs/star-lord.crt \
COHERENCE_TLS_CLIENT_KEY=`pwd`/test/utils/certs/star-lord.key \
COHERENCE_VERSION=22.06.5 PROFILES=,secure,-jakarta,javax make clean certs generate-proto build-test-images test-e2e-standalone
COHERENCE_VERSION=22.06.6 PROFILES=,secure,-jakarta,javax make clean certs generate-proto build-test-images test-e2e-standalone
- name: E2E Local Tests SSL (options)
shell: bash
Expand All @@ -112,7 +112,7 @@ jobs:
COHERENCE_TLS_CERTS_PATH_OPTION=`pwd`/test/utils/certs/guardians-ca.crt \
COHERENCE_TLS_CLIENT_CERT_OPTION=`pwd`/test/utils/certs/star-lord.crt \
COHERENCE_TLS_CLIENT_KEY_OPTION=`pwd`/test/utils/certs/star-lord.key \
COHERENCE_VERSION=22.06.5 PROFILES=,secure,-jakarta,javax,scope make clean certs generate-proto build-test-images test-e2e-standalone-scope
COHERENCE_VERSION=22.06.6 PROFILES=,secure,-jakarta,javax,scope make clean certs generate-proto build-test-images test-e2e-standalone-scope
- name: E2E Local Tests SSL (tlsConfig)
shell: bash
Expand All @@ -121,7 +121,7 @@ jobs:
COHERENCE_TLS_CERTS_PATH_OPTION=`pwd`/test/utils/certs/guardians-ca.crt \
COHERENCE_TLS_CLIENT_CERT_OPTION=`pwd`/test/utils/certs/star-lord.crt \
COHERENCE_TLS_CLIENT_KEY_OPTION=`pwd`/test/utils/certs/star-lord.key \
COHERENCE_VERSION=22.06.5 PROFILES=,secure,-jakarta,javax,scope make clean certs generate-proto build-test-images test-e2e-standalone-scope
COHERENCE_VERSION=22.06.6 PROFILES=,secure,-jakarta,javax,scope make clean certs generate-proto build-test-images test-e2e-standalone-scope
- uses: actions/upload-artifact@v3
if: failure()
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/discovery-compatability-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
matrix:
coherenceVersion:
- 22.06.5
- 22.06.6-SNAPSHOT
- 22.06.6
- 22.06.7-SNAPSHOT
- 23.03.1
- 23.09
- 23.09.1-SNAPSHOT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/discovery-snapshot-tests-22.06.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
coherenceVersion:
- 22.06.6-SNAPSHOT
- 22.06.7-SNAPSHOT
go-version:
- 1.19.x
- 1.20.x
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/examples.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ jobs:
fail-fast: false
matrix:
coherenceVersion:
- 22.06.6-SNAPSHOT
- 22.06.7-SNAPSHOT
- 22.06.5
- 22.06.6
go-version:
- 1.19.x
- 1.20.x
Expand Down
2 changes: 1 addition & 1 deletion coherence/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ EntrySet, KeySet, Values, InvokeAll and InvokeAllFilter.
ch := namedMap.EntrySetFilter(ctx, filters.Greater(age, 20))
for result := range ch {
if result.Err != nil {
log.Fatal(err)
log.Fatal(result.Err)
}
fmt.Println("Key:", result.Key, "Value:", result.Value)
}
Expand Down

0 comments on commit 70be280

Please sign in to comment.