Skip to content

Commit

Permalink
fix: add mode for created directories
Browse files Browse the repository at this point in the history
Signed-off-by: Esteve Fernandez <esteve.fernandez@tier4.jp>
  • Loading branch information
esteve committed Sep 18, 2023
1 parent 0d1858a commit 5591901
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions ansible/roles/artifacts/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- name: Create {{ data_dir }}/yabloc_pose_initializer directory

Check failure on line 2 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/yabloc_pose_initializer"
mode: "755"
state: directory

- name: Download yabloc_pose_initializer/resources.tar.gz
Expand All @@ -16,6 +17,7 @@
- name: Create {{ data_dir }}/image_projection_based_fusion directory

Check failure on line 17 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/image_projection_based_fusion"
mode: "755"
state: directory

- name: Download image_projection_based_fusion/pts_voxel_encoder_pointpainting.onnx
Expand All @@ -38,6 +40,7 @@
- name: Create {{ data_dir }}/lidar_apollo_instance_segmentation directory

Check failure on line 40 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/lidar_apollo_instance_segmentation"
mode: "755"
state: directory

- name: Download lidar_apollo_instance_segmentation/vlp-16.onnx
Expand Down Expand Up @@ -68,6 +71,7 @@
- name: Create {{ data_dir }}/lidar_centerpoint directory

Check failure on line 71 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/lidar_centerpoint"
mode: "755"
state: directory

- name: Download lidar_centerpoint/pts_voxel_encoder_centerpoint.onnx
Expand Down Expand Up @@ -106,6 +110,7 @@
- name: Create {{ data_dir }}/tensorrt_yolo directory

Check failure on line 110 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/tensorrt_yolo"
mode: "755"
state: directory

- name: Download tensorrt_yolo/yolov3.onnx
Expand Down Expand Up @@ -176,6 +181,7 @@
- name: Create {{ data_dir }}/tensorrt_yolox directory

Check failure on line 181 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/tensorrt_yolox"
mode: "755"
state: directory

- name: Download tensorrt_yolox/yolox-tiny.onnx
Expand Down Expand Up @@ -214,6 +220,7 @@
- name: Create {{ data_dir }}/traffic_light_classifier directory

Check failure on line 220 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/traffic_light_classifier"
mode: "755"
state: directory

- name: Download traffic_light_classifier/traffic_light_classifier_mobilenetv2_batch_1.onnx
Expand Down Expand Up @@ -276,6 +283,7 @@
- name: Create {{ data_dir }}/traffic_light_fine_detector directory

Check failure on line 283 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/traffic_light_fine_detector"
mode: "755"
state: directory

- name: Download traffic_light_fine_detector/tlr_yolox_s_batch_1.onnx
Expand Down Expand Up @@ -314,6 +322,7 @@
- name: Create {{ data_dir }}/traffic_light_ssd_fine_detector directory

Check failure on line 322 in ansible/roles/artifacts/tasks/main.yaml

View workflow job for this annotation

GitHub Actions / pre-commit-ansible

name[template]

Jinja templates should only be at the end of 'name'
ansible.builtin.file:
path: "{{ data_dir }}/traffic_light_ssd_fine_detector"
mode: "755"
state: directory

- name: Download traffic_light_ssd_fine_detector/mb2-ssd-lite-tlr.onnx
Expand Down

0 comments on commit 5591901

Please sign in to comment.