larroy commented on a change in pull request #12094: [MXNET-793] ★ Virtualized
testing in CI with QEMU ★
URL: https://github.com/apache/incubator-mxnet/pull/12094#discussion_r224990652
##########
File path: ci/docker/qemu/playbook.yml
##########
@@ -0,0 +1,57 @@
+---
+- name: provision QEMU VM
+ hosts: all
+ gather_facts: no
+ become: true
+ become_user: root
+ tasks:
+ - name: Wait until ssh is available
+ wait_for_connection:
+ delay: 0
+ sleep: 3
+ timeout: 400
+ - command: hostname
+ register: h
+ - debug: msg="{{ h.stdout }}"
+
+ - name: copy mxnet artifacts
+ copy:
+ src: "{{ item }}"
+ dest: mxnet_dist/
+ with_fileglob: "/work/mxnet/build/*.whl"
+
+ - name: copy runtime_functions.py
+ copy:
+ src: "/work/runtime_functions.py"
+ dest: .
+ - file:
+ path: runtime_functions.py
+ mode: 0755
+
+# - name: 'run tests'
Review comment:
⚡️
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services