aboutsummaryrefslogtreecommitdiff
path: root/ldcg-python-manylinux-tensorflow/ansible/roles/tensorflow_io_in_container/tasks/build_wheel.yml
blob: f30649facd1b756b2edeeed53973d890e3cd79b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
- name: Create wheel build script from template
  ansible.builtin.template:
    src: "build_tfio_wheels.sh.j2"
    dest: "{{ build_dir }}/scripts/build_tfio_wheels.sh"
    mode: "755"
    force: true

- name: Build TensorFlow IO wheels for Python {{ python_version }}  # noqa no-changed-when
  community.docker.docker_container_exec:
    container: "tfio-multipython"
    command: /bin/bash -c /tmp/workspace/scripts/build_tfio_wheels.sh
    chdir: "/tmp/workspace"