Skip to content

Commit e7abc9e

Browse files
committed
fix skips, apt install unzip
1 parent 40d1092 commit e7abc9e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

recipe/build-core.sh

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,13 @@ build --host_platform=//bazel_toolchain:build_platform
3333
build --experimental_ui_max_stdouterr_bytes=16000000
3434
build --local_ram_resources=HOST_RAM*.8 --local_cpu_resources=2
3535
EOF
36+
else
37+
# make sure base image has unzip, build isolation requires it in /bin:/usr/bin:/usr/local/bin
38+
echo installing unzip
39+
sudo apt install -y unzip
40+
echo done installing unzip
3641
fi
3742

38-
cat >> .bazelrc <<EOF
39-
# build --spawn_strategy=local
40-
EOF
41-
4243
echo '---------------- .bazelrc --------------------------'
4344
cat .bazelrc
4445
echo '----------------------------------------------------'

recipe/meta.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,8 @@ outputs:
288288
- echo "no tests for ray-observability, it is a convenience bundle"
289289

290290
- name: ray-adag
291+
build:
292+
skip: true # [osx]
291293
requirements:
292294
host:
293295
- python
@@ -300,6 +302,8 @@ outputs:
300302
- echo "no tests for ray-adag, it is a convenience bundle"
301303

302304
- name: ray-cgraph
305+
build:
306+
skip: true # [osx]
303307
requirements:
304308
host:
305309
- python

0 commit comments

Comments
 (0)