Skip to content

Commit

Permalink
feat: created an arm64 package so that the script works for amd64 and…
Browse files Browse the repository at this point in the history
… arm64

Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>
  • Loading branch information
knzo25 committed Feb 19, 2025
1 parent cb08f0d commit 83a8e79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/roles/spconv/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
- name: Download the cumm package
ansible.builtin.get_url:
mode: "0644"
url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/cumm_{{ cumm_version }}_amd64.deb
url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/cumm_{{ cumm_version }}_{{ ansible_architecture }}.deb
dest: /tmp/cumm.deb

- name: Install the cumm package
Expand All @@ -14,7 +14,7 @@
- name: Download the spconv package
ansible.builtin.get_url:
mode: "0644"
url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/spconv_{{ spconv_version }}_amd64.deb
url: https://github.com/knzo25/spconv_cpp/releases/download/spconv_v{{ spconv_version }}%2Bcumm_v{{ cumm_version }}/spconv_{{ spconv_version }}_{{ ansible_architecture }}.deb
dest: /tmp/spconv.deb

- name: Install the spconv package
Expand Down

0 comments on commit 83a8e79

Please sign in to comment.