Skip to content

Commit 97236f7

Browse files
authored
fix pipeline issues (#41487)
- fix data test dependencies - fix arm64 image building - add missed version change Signed-off-by: Lonnie Liu <lonnie@anyscale.com> --------- Signed-off-by: Lonnie Liu <lonnie@anyscale.com>
1 parent 3652b8f commit 97236f7

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.buildkite/data.rayci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ steps:
1313
--build-name data6build
1414
--test-env RAY_DATA_USE_STREAMING_EXECUTOR=1
1515
--except-tags data_integration,doctest
16-
depends_on: data6build
16+
depends_on: [ "data6build", "forge" ]
1717
job_env: forge
1818

1919
- label: ":database: data: arrow 12 tests"
@@ -29,7 +29,7 @@ steps:
2929
--build-name data12build
3030
--test-env RAY_DATA_USE_STREAMING_EXECUTOR=1
3131
--except-tags data_integration,doctest
32-
depends_on: data12build
32+
depends_on: [ "data12build", "forge" ]
3333
job_env: forge
3434

3535
- label: ":database: data: arrow nightly tests"
@@ -45,7 +45,7 @@ steps:
4545
--build-name datanbuild
4646
--test-env RAY_DATA_USE_STREAMING_EXECUTOR=1
4747
--except-tags data_integration,doctest
48-
depends_on: datanbuild
48+
depends_on: [ "datanbuild", "forge" ]
4949
job_env: forge
5050

5151
- label: ":database: data: flaky tests"
@@ -58,5 +58,5 @@ steps:
5858
- bazel run //ci/ray_ci:test_in_docker -- //... data --run-flaky-tests
5959
--test-env RAY_DATA_USE_STREAMING_EXECUTOR=1 --parallelism-per-worker 3
6060
--build-name data12build
61-
depends_on: data12build
61+
depends_on: [ "data12build", "forge" ]
6262
job_env: forge

ci/docker/data.build.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ SHELL ["/bin/bash", "-ice"]
1414
COPY . .
1515

1616
RUN DATA_PROCESSING_TESTING=1 ARROW_VERSION=$ARROW_VERSION ./ci/env/install-dependencies.sh
17-
RUN pip install "datasets==2.14.0"

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>io.ray</groupId>
77
<artifactId>ray-superpom</artifactId>
8-
<version>2.8.0</version>
8+
<version>2.8.1</version>
99
<packaging>pom</packaging>
1010
<name>Ray Project Parent POM</name>
1111
<description>An open source framework that provides a simple, universal API for building distributed applications.

python/requirements/test-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ werkzeug==2.1.2
7575
xlrd==2.0.1
7676
yq==3.2.2
7777
memray; platform_system != "Windows" and sys_platform != "darwin" and platform_machine != 'aarch64'
78-
memray @ git+https://github.com/bloomberg/memray.git; platform_system != "Windows" and sys_platform != "darwin" and platform_machine == 'aarch64'
7978

8079
# For doc tests
8180
myst-parser==0.15.2

0 commit comments

Comments
 (0)