aboutsummaryrefslogtreecommitdiff
path: root/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml')
-rw-r--r--ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml b/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml
new file mode 100644
index 0000000000..6447aea8b7
--- /dev/null
+++ b/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io/tasks/fetch.yml
@@ -0,0 +1,32 @@
+---
+- name: Fetch and unpack TensorFlow IO source archive
+ when: tensorflow_io_version != 'git'
+ block:
+ - name: Fetch TensorFlow IO {{ tensorflow_io_version }} source
+ ansible.builtin.get_url:
+ url: "https://github.com/tensorflow/io/archive/refs/tags/v{{ tensorflow_io_version }}.tar.gz"
+ dest: "{{ build_dir }}/io-{{ tensorflow_io_version }}.tar.gz"
+ mode: 0600
+
+ - name: Unpack TensorFlow IO {{ tensorflow_io_version }} source
+ ansible.builtin.unarchive:
+ src: "{{ build_dir }}/io-{{ tensorflow_io_version }}.tar.gz"
+ dest: "{{ build_dir }}/"
+ remote_src: true
+
+- name: Fetch TensorFlow IO from git
+ ansible.builtin.git:
+ repo: "https://github.com/tensorflow/io.git" # noqa latest[git]
+ dest: "{{ build_dir }}/io-{{ tensorflow_io_version }}/"
+ depth: 1
+ recursive: true
+ force: true
+ version: "{{ tensorflow_io_git_version }}"
+ when: tensorflow_io_version == 'git'
+
+ # https://github.com/tensorflow/io/issues/1510
+- name: Make libwebp buildable with gcc 10
+ ansible.builtin.lineinfile:
+ regexp: "^.*WEBP_EXTERN.*$"
+ state: absent
+ path: "{{ build_dir }}/io-{{ tensorflow_io_version }}/third_party/libwebp.BUILD"