From 91bddb15e5768e8f27ab4532f89931487e00b9cd Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 20 Nov 2024 05:09:33 +0000 Subject: [PATCH] Deployed 730e4e9a29 to latest with MkDocs 1.4.3 and mike 2.2.0.dev0 --- .../autoware/docker-installation/index.html | 12 +++++++++++ .../autoware/source-installation/index.html | 19 +++++++++++++++++- latest/search/search_index.json | 2 +- latest/sitemap.xml.gz | Bin 3223 -> 3223 bytes 4 files changed, 31 insertions(+), 2 deletions(-) diff --git a/latest/installation/autoware/docker-installation/index.html b/latest/installation/autoware/docker-installation/index.html index 6b9dfbd5e1b..040d377c9a1 100644 --- a/latest/installation/autoware/docker-installation/index.html +++ b/latest/installation/autoware/docker-installation/index.html @@ -7779,6 +7779,12 @@

How to set up a workspace
mkdir src
 vcs import src < autoware.repos
 
+

If you are an active developer, you may also want to pull the nightly repositories, which contain the latest updates:

+
vcs import src < autoware-nightly.repos
+
+
+

⚠️ Note: The nightly repositories are unstable and may contain bugs. Use them with caution.

+
  • Update dependent ROS packages.

    @@ -7802,6 +7808,10 @@

    How to set up a workspace
    cd autoware
     git pull
     vcs import src < autoware.repos
    +
    +# If you are using nightly repositories, also run the following command:
    +vcs import src < autoware-nightly.repos
    +
     vcs pull src
     # Make sure all ros-$ROS_DISTRO-* packages are upgraded to their latest version
     sudo apt update && sudo apt upgrade
    @@ -7813,6 +7823,8 @@ 

    How to set up a workspace
    rm -rf src/*
     vcs import src < autoware.repos
    +# If you are using nightly repositories, import them as well.
    +vcs import src < autoware-nightly.repos
     

    Using VS Code remote containers for development#

    diff --git a/latest/installation/autoware/source-installation/index.html b/latest/installation/autoware/source-installation/index.html index 4ba6ad96cc1..7222c935467 100644 --- a/latest/installation/autoware/source-installation/index.html +++ b/latest/installation/autoware/source-installation/index.html @@ -7801,6 +7801,12 @@

    How to set up a workspace src vcs import src < autoware.repos

    +

    If you are an active developer, you may also want to pull the nightly repositories, which contain the latest updates:

    +
    vcs import src < autoware-nightly.repos
    +
    +
    +

    ⚠️ Note: The nightly repositories are unstable and may contain bugs. Use them with caution.

    +

  • Install dependent ROS packages.

    @@ -7844,7 +7850,13 @@

    How to update a workspace
    vcs import src < autoware.repos
    -vcs pull src
    +
    +
    +

    ⚠️ If you are using nightly repositories, you can also update them.

    +
    vcs import src < autoware-nightly.repos
    +
    +
    +
    vcs pull src
     

    For Git users: