forked from conda-forge/ray-packages-feedstock
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
453e688
commit 053e66b
Showing
17 changed files
with
414 additions
and
539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
c_compiler_version: | ||
- 8.* #[x86_64] | ||
- 11.2.* #[x86_64] | ||
cxx_compiler_version: | ||
- 8.* #[x86_64] | ||
- 11.2.* #[x86_64] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set -xe | ||
|
||
cd python/ray/dashboard/client | ||
npm install | ||
npm ci | ||
npm run build | ||
# not sure why this seems to get copied on windows but not linux... | ||
mkdir -p $SP_DIR/ray/dashboard/client # [not win] | ||
cp -R ./build $SP_DIR/ray/dashboard/client/build # [not win] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 0 additions & 32 deletions
32
recipe/patches/0001-Do-not-force-pickle5-in-sys.path.patch
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
recipe/patches/0001-add-name-attribute-for-googletest.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From 84b18ff1a2b5c6b83e6763425d428d7a40b4230a Mon Sep 17 00:00:00 2001 | ||
From: ArchanaShinde1 <archana.shinde2504@gmail.com> | ||
Date: Wed, 13 Mar 2024 07:06:58 +0000 | ||
Subject: [PATCH] add name attribute for googletest | ||
|
||
--- | ||
bazel/ray_deps_setup.bzl | 1 + | ||
1 file changed, 1 insertion(+) | ||
|
||
diff --git a/bazel/ray_deps_setup.bzl b/bazel/ray_deps_setup.bzl | ||
index f91eb303c4..25e2d412c1 100644 | ||
--- a/bazel/ray_deps_setup.bzl | ||
+++ b/bazel/ray_deps_setup.bzl | ||
@@ -173,6 +173,7 @@ def ray_deps_setup(): | ||
) | ||
|
||
auto_http_archive( | ||
+ name = "com_google_googletest", | ||
url = "https://github.com/google/googletest/archive/refs/tags/v1.13.0.tar.gz", | ||
sha256 = "ad7fdba11ea011c1d925b3289cf4af2c66a352e18d4c7264392fead75e919363", | ||
) | ||
-- | ||
2.40.1 | ||
|
Oops, something went wrong.