Skip to content

Commit 5c9e973

Browse files
authored
Merge pull request #47 from yongtang/flatbuffers
Update flatbuffers to b99332e
2 parents 8fa6568 + 99630cc commit 5c9e973

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ matrix:
1919
- 2.7
2020
before_install:
2121
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
22+
- pip install pyarrow==0.11.1
2223
script:
2324
- bazel test --show_progress=no -s --verbose_failures --test_output=errors -- //tensorflow_io/...
2425
- language: python
@@ -33,13 +34,15 @@ matrix:
3334
- 3.5
3435
before_install:
3536
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
37+
- pip install pyarrow==0.11.1
3638
script:
3739
- bazel test --show_progress=no -s --verbose_failures --test_output=errors -- //tensorflow_io/...
3840
- language: python
3941
python:
4042
- 3.6
4143
before_install:
4244
- bash -x ${TRAVIS_BUILD_DIR}/.travis/python.configure.sh
45+
- pip install pyarrow==0.11.1
4346
script:
4447
- bazel test --show_progress=no -s --verbose_failures --test_output=errors -- //tensorflow_io/...
4548
- language: r

WORKSPACE

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
workspace(name = "org_tensorflow")
2+
13
load("//tf:tf_configure.bzl", "tf_configure")
24
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
35

@@ -132,3 +134,13 @@ http_archive(
132134
strip_prefix = "libwebp-1.0.1",
133135
build_file = "//third_party:libwebp.BUILD",
134136
)
137+
138+
http_archive(
139+
name = "com_github_google_flatbuffers",
140+
urls = [
141+
"https://mirror.bazel.build/github.com/google/flatbuffers/archive/b99332efd732e6faf60bb7ce1ce5902ed65d5ba3.tar.gz",
142+
"https://github.com/google/flatbuffers/archive/b99332efd732e6faf60bb7ce1ce5902ed65d5ba3.tar.gz",
143+
],
144+
sha256 = "12a13686cab7ffaf8ea01711b8f55e1dbd3bf059b7c46a25fefa1250bdd9dd23",
145+
strip_prefix = "flatbuffers-b99332efd732e6faf60bb7ce1ce5902ed65d5ba3",
146+
)

0 commit comments

Comments
 (0)