You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ansible/playbooks/openadk.yaml
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
- name: Verify OS
6
6
ansible.builtin.fail:
7
7
msg: Only Ubuntu 22.04 is supported for this branch. Please refer to https://autowarefoundation.github.io/autoware-documentation/main/installation/autoware/source-installation/.
8
-
when: ansible_distribution == 'Ubuntu' and ansible_distribution_version != '22.04'
8
+
when: ansible_distribution != 'Ubuntu' or ansible_distribution_version != '22.04'
You can use [VS Code Remote Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) to develop Autoware in the containerized environment with ease. Or you can use `run.sh` manually to run the Autoware development container with the workspace mounted.
65
65
@@ -68,18 +68,34 @@ You can use [VS Code Remote Containers](https://marketplace.visualstudio.com/ite
68
68
Get the Visual Studio Code's [Remote - Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension.
69
69
And reopen the workspace in the container by selecting `Remote-Containers: Reopen in Container` from the Command Palette (`F1`).
70
70
71
-
By default devcontainer assumes NVIDIA GPU support, you can change this by deleting these lines within `.devcontainer/devcontainer.json`:
71
+
Autoware and Autoware-cuda are available containers for development.
72
72
73
-
```json
74
-
"hostRequirements": {
75
-
"gpu": true
76
-
},
77
-
```
73
+
If you want to use CUDA supported dev container, you need to install the NVIDIA Container Toolkit before opening the workspace in the container:
0 commit comments