Skip to content

Commit

Permalink
support 2.0.0 in compatibility test (#508)
Browse files Browse the repository at this point in the history
Support Ray 2.0.0 in the compatibility test.
  • Loading branch information
wilsonwang371 authored Aug 31, 2022
1 parent 10fd629 commit ad7843e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -260,13 +260,13 @@ jobs:
working-directory: ${{env.working-directory}}
if: contains(fromJson('["refs/heads/master", "refs/heads/release-0.3"]'), github.ref)

test-compatibility-1_11_0:
test-compatibility-1_12_0:
needs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
name: Compatibility Test - 1.11.0
name: Compatibility Test - 1.12.0
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -278,15 +278,15 @@ jobs:

- uses: ./.github/workflows/actions/compatibility
with:
ray_version: 1.11.0
ray_version: 1.12.0

test-compatibility-1_12_0:
test-compatibility-1_13_0:
needs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
name: Compatibility Test - 1.12.0
name: Compatibility Test - 1.13.0
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -298,15 +298,15 @@ jobs:

- uses: ./.github/workflows/actions/compatibility
with:
ray_version: 1.12.0
ray_version: 1.13.0

test-compatibility-1_13_0:
test-compatibility-2_0_0:
needs:
- build_operator
- build_apiserver
- lint
runs-on: ubuntu-latest
name: Compatibility Test - 1.13.0
name: Compatibility Test - 2.0.0
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand All @@ -318,7 +318,7 @@ jobs:

- uses: ./.github/workflows/actions/compatibility
with:
ray_version: 1.13.0
ray_version: 2.0.0

test-compatibility-nightly:
needs:
Expand Down

0 comments on commit ad7843e

Please sign in to comment.