8000 Increase timeout for tests by tmiddlet2666 · Pull Request #133 · oracle/coherence-cli · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Increase timeout for tests #133

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

Merged
merged 2 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
8000
Diff view
79 changes: 79 additions & 0 deletions .github/workflows/compatability-tests-14110.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Copyright 2023 Oracle Corporation and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.

# ---------------------------------------------------------------------------
# Coherence CLI Compatability Tests against mainline of CLI - 14.1.1.0
# ---------------------------------------------------------------------------
name: Compatability Tests 14.1.1.0

on:
workflow_dispatch:
push:
branches-ignore:
- gh-pages

jobs:
build:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
coherenceVersion:
- 14.1.1-0-15
- 14.1.1-0-16-SNAPSHOT
javaImage:
- gcr.io/distroless/java:11

# Checkout the source, we need a depth of zero to fetch all of the history otherwise
# the copyright check cannot work out the date of the files from Git.
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Get Docker Images
shell: bash
run: |
docker pull gcr.io/distroless/java:11

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'

- name: Cache Go Modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-mods-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-mods-

- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19

- name: Compatability Tests
shell: bash
run: |
export COHERENCE_BASE_IMAGE=${{ matrix.javaImage }}
export COHERENCE_VERSION=${{ matrix.coherenceVersion }}
make clean build-test-images test-e2e-standalone
make test-clean test-discovery

- uses: actions/upload-artifact@v3
if: failure()
with:
name: test-output
path: build/_output/test-logs
4 changes: 1 addition & 3 deletions .github/workflows/compatability-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@ jobs:
- 22.06.5
- 22.06.6
- 22.06.7-SNAPSHOT
- 14.1.1-0-15
- 14.1.1-0-16-SNAPSHOT
javaImage:
- gcr.io/distroless/java17
5E08
Expand All @@ -40,7 +38,7 @@ jobs:
- name: Get Docker Images
shell: bash
run: |
docker pull gcr.io/distroless/java:11
docker pull gcr.io/distroless/java17

- name: Set up JDK
uses: actions/setup-java@v3
Expand Down
0