Zack Williams | a276311 | 2017-01-03 11:38:38 -0700 | [diff] [blame] | 1 | --- |
| 2 | # repo/tasks/main.yml |
| 3 | |
| 4 | - name: Download and install repo tool |
| 5 | become: yes |
| 6 | get_url: |
| 7 | url: "{{ repo_dl_url }}" |
| 8 | checksum: "{{ repo_checksum }}" |
| 9 | dest: "/usr/local/bin/repo" |
| 10 | owner: root |
| 11 | group: root |
| 12 | mode: 0755 |
| 13 | |
| 14 | - name: Create CORD directory |
| 15 | file: |
| 16 | dest: "{{ cord_dir }}" |
| 17 | state: directory |
| 18 | |
| 19 | - name: Init CORD repos (master branch) using repo |
| 20 | command: "/usr/local/bin/repo init -u {{ repo_manifest_url }} -b master -g build,onos,orchestration" |
| 21 | args: |
| 22 | chdir: "{{ cord_dir }}" |
| 23 | creates: "{{ cord_dir }}/.repo" |
| 24 | |
| 25 | - name: Synchronize CORD repos using repo |
| 26 | command: "repo sync" |
| 27 | args: |
| 28 | chdir: "{{ cord_dir }}" |
| 29 | creates: "{{ cord_dir }}/build" |
| 30 | |
| 31 | - name: Download specific gerrit changesets using repo |
| 32 | command: "/usr/local/bin/repo download {{ item.path }} {{ item.revision }}" |
| 33 | args: |
| 34 | chdir: "{{ cord_dir }}" |
| 35 | with_items: "{{ gerrit_changesets }}" |
| 36 | tags: |
| 37 | - skip_ansible_lint # usually won't be run, except during dev |
| 38 | |