File tree 8 files changed +28
-6
lines changed
tensorflow_io_gcs_filesystem/core
8 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -301,11 +301,28 @@ jobs:
301
301
shell : bash
302
302
run : |
303
303
set -x
304
+ docker system prune --all --force
305
+ docker images
306
+ docker ps -a
307
+ df -h
308
+ # See https://github.com/actions/runner-images/issues/2840
309
+ sudo rm -rf /usr/share/dotnet
310
+ sudo rm -rf /opt/ghc
311
+ sudo rm -rf "/usr/local/share/boost"
312
+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
313
+ df -h
314
+ # See https://github.com/actions/runner-images/issues/2606
315
+ sudo rm -rf /usr/local/lib/android
316
+ df -h
317
+ sudo apt-get autoremove -y
318
+ sudo apt-get autoclean -y
319
+ df -h
304
320
#export BAZEL_OPTIMIZATION="--config=optimization --config=linux_ci --config=cache"
305
321
#if [[ "${{ env.EVENT_NAME }}" == "push" && "${{ env.REPO_NAME }}" == "tensorflow/io" ]]; then
306
322
# export BAZEL_OPTIMIZATION="${BAZEL_OPTIMIZATION} --remote_upload_local_results=true --google_credentials=service_account_creds.json"
307
323
#fi
308
- docker build -t io -f tools/docker/build.Dockerfile --build-arg PYTHON_VERSION=3.10 --build-arg TENSORFLOW_VERSION=2.14 --build-arg BAZEL_OPTIMIZATION="${BAZEL_OPTIMIZATION}" --progress=plain .
324
+ TENSORFLOW_VERSION=$(grep tensorflow tensorflow_io/python/ops/version_ops.py | sed -e "s/require = //g" | awk -F, '{print $1}' | awk -F= '{print $2}' | awk -F. '{print $1"."$2}')
325
+ DOCKER_BUILDKIT=0 docker build -t io -f tools/docker/build.Dockerfile --build-arg PYTHON_VERSION=3.10 --build-arg TENSORFLOW_VERSION="${TENSORFLOW_VERSION}" --build-arg BAZEL_OPTIMIZATION="${BAZEL_OPTIMIZATION}" .
309
326
docker create -it --name io io bash
310
327
sleep 5
311
328
docker cp -L io:/opt/io/bazel-bin build
Original file line number Diff line number Diff line change @@ -93,10 +93,10 @@ switched_rules_by_language(
93
93
94
94
http_archive (
95
95
name = "org_tensorflow" ,
96
- sha256 = "ce357fd0728f0d1b0831d1653f475591662ec5bca736a94ff789e6b1944df19f " ,
97
- strip_prefix = "tensorflow-2.14 .0" ,
96
+ sha256 = "9cec5acb0ecf2d47b16891f8bc5bc6fbfdffe1700bdadc0d9ebe27ea34f0c220 " ,
97
+ strip_prefix = "tensorflow-2.15 .0" ,
98
98
urls = [
99
- "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.14 .0.tar.gz" ,
99
+ "https://github.com/tensorflow/tensorflow/archive/refs/tags/v2.15 .0.tar.gz" ,
100
100
],
101
101
)
102
102
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ cc_library(
18
18
"//tensorflow_io/core/filesystems:filesystem_plugins_header" ,
19
19
"@com_github_azure_azure_sdk_for_cpp//:azure" ,
20
20
"@com_google_absl//absl/strings" ,
21
+ "@local_tsl//tsl/c:tsl_status" ,
21
22
],
22
23
alwayslink = 1 ,
23
24
)
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ cc_library(
19
19
"@com_google_absl//absl/strings" ,
20
20
"@com_google_absl//absl/synchronization" ,
21
21
"@hadoop" ,
22
+ "@local_tsl//tsl/c:tsl_status" ,
22
23
],
23
24
alwayslink = 1 ,
24
25
)
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ cc_library(
20
20
"@com_google_absl//absl/synchronization" ,
21
21
"@com_google_absl//absl/time" ,
22
22
"@curl" ,
23
+ "@local_tsl//tsl/c:tsl_status" ,
23
24
],
24
25
alwayslink = 1 ,
25
26
)
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ cc_library(
23
23
"@aws-sdk-cpp//:transfer" ,
24
24
"@com_google_absl//absl/strings" ,
25
25
"@com_google_absl//absl/synchronization" ,
26
+ "@local_tsl//tsl/c:tsl_status" ,
26
27
],
27
28
alwayslink = 1 ,
28
29
)
Original file line number Diff line number Diff line change 14
14
# ==============================================================================
15
15
"""version_ops"""
16
16
17
- version = "0.35 .0"
18
- require = "tensorflow>=2.14 .0,<2.15 .0"
17
+ version = "0.36 .0"
18
+ require = "tensorflow>=2.15 .0,<2.16 .0"
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ cc_library(
37
37
"@com_google_absl//absl/types:variant" ,
38
38
"@local_config_tf//:tf_c_header_lib" ,
39
39
"@local_config_tf//:tf_tsl_header_lib" ,
40
+ "@local_tsl//tsl/c:tsl_status" ,
40
41
],
41
42
alwayslink = 1 ,
42
43
)
You can’t perform that action at this time.
0 commit comments