14
14
fail-fast : false
15
15
matrix :
16
16
python : ['3.8']
17
- version : ['tensorflow==2.5.0rc1 :tensorflow-io-nightly', 'tensorflow==2.5.0rc1 :tensorflow-io']
17
+ version : ['tensorflow==2.5.0rc3 :tensorflow-io-nightly', 'tensorflow==2.5.0rc3 :tensorflow-io']
18
18
steps :
19
19
- uses : actions/checkout@v2
20
20
- uses : actions/setup-python@v1
@@ -31,13 +31,15 @@ jobs:
31
31
python --version
32
32
df -h
33
33
rm -rf tensorflow_io
34
+ rm -rf tensorflow_io_plugin_gs
34
35
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
35
36
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
36
37
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
37
38
python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
38
39
python -m pip freeze
39
40
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
40
41
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
42
+ python -c 'from tensorflow_io_plugin_gs.core.python.ops import plugin_gs; print(plugin_gs)'
41
43
python -m pytest --benchmark-only -v --import-mode=append $(find . -type f \( -iname "test_*.py" ! \( -iname "test_*_v1.py" -o -iname "test_bigquery.py" \) \))
42
44
43
45
linux :
48
50
fail-fast : false
49
51
matrix :
50
52
python : ['3.8']
51
- version : ['tensorflow==2.5.0rc1 :tensorflow-io-nightly', 'tensorflow==2.5.0rc1 :tensorflow-io']
53
+ version : ['tensorflow==2.5.0rc3 :tensorflow-io-nightly', 'tensorflow==2.5.0rc3 :tensorflow-io']
52
54
steps :
53
55
- uses : actions/checkout@v2
54
56
with :
@@ -67,13 +69,15 @@ jobs:
67
69
python --version
68
70
df -h
69
71
rm -rf tensorflow_io
72
+ rm -rf tensorflow_io_plugin_gs
70
73
echo ${{ matrix.version }} | awk -F: '{print $1}' | xargs python -m pip install -U
71
74
echo ${{ matrix.version }} | awk -F: '{print $2}' | xargs python -m pip install --no-deps -U
72
75
if [[ "${{ matrix.version }}" == *"tensorflow-io-nightly"* ]]; then python -m pip install tensorflow-io-plugin-gs-nightly ; fi
73
76
python -m pip install -q scikit-image pytest pytest-benchmark boto3 fastavro avro-python3 scikit-image pandas pyarrow==2.0.0 google-cloud-pubsub==2.1.0 google-cloud-bigquery-storage==1.1.0 google-cloud-bigquery==2.3.1 google-cloud-storage==1.32.0 azure-storage-blob==12.7.1
74
77
python -m pip freeze
75
78
python -c 'import tensorflow as tf; print(tf.version.VERSION)'
76
79
python -c 'import tensorflow_io as tfio; print(tfio.version.VERSION)'
80
+ python -c 'from tensorflow_io_plugin_gs.core.python.ops import plugin_gs; print(plugin_gs)'
77
81
python -m pytest --benchmark-only --benchmark-json benchmark.json -v --import-mode=append $(find . -type f \( -iname "test_*.py" ! \( -iname "test_*_v1.py" -o -iname "test_bigquery.py" \) \))
78
82
- name : Store benchmark result
79
83
uses : rhysd/github-action-benchmark@v1
0 commit comments