From f260c05427704c8a629db303b5ee650ed2094f1c Mon Sep 17 00:00:00 2001 From: Arnaud de Grandmaison Date: Thu, 13 Feb 2025 10:49:21 +0100 Subject: [PATCH] [sme2] Update the gitlab link for the code samples. --- .../cross-platform/sme2/1-get-started.md | 21 ++++++++----------- 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/content/learning-paths/cross-platform/sme2/1-get-started.md b/content/learning-paths/cross-platform/sme2/1-get-started.md index 61031df5d2..9905905c57 100644 --- a/content/learning-paths/cross-platform/sme2/1-get-started.md +++ b/content/learning-paths/cross-platform/sme2/1-get-started.md @@ -104,16 +104,18 @@ For more examples and ideas, visit: ## Environment Now, using Git, clone the environment for experimenting with SME2 to a directory -named ``SME2.git``: +named ``code-examples.git`` and change your current directory to +``code-examples.git/learning-paths/cross-platform/sme2`` : ```BASH -git clone https://gitlab.arm.com/learning-code-examples/TODO_SOME_PATH SME2-learning-path.git +git clone https://gitlab.arm.com/learning-code-examples/code-examples code-examples.git +cd code-examples.git/learning-paths/cross-platform/sme2 ``` -This list of content in the repository should look like this : +This list of content in this directory should look like this : ```TXT -SME2-learning-path.git/ +code-examples.git/learning-paths/cross-platform/sme2/ ├── .clang-format ├── .devcontainer/ │ └── devcontainer.json @@ -153,14 +155,9 @@ It contains: - A script called ``build-all-containers.sh`` that was used to create the image for you to download to provide multi-architecture support for both x86_64 and AArch64. - A configuration script for VS Code to be able to use the container from the IDE called ``.devcontainer/devcontainer.json``. -The next step is to change directory to your checkout: - -```BASH -cd SME2-learning-path.git -``` {{% notice Note %}} From this point in the Learning Path, all instructions assume that your current -directory is ``SME2-learning-path.git``.{{% /notice %}} +directory is ``code-examples.git/learning-paths/cross-platform/sme2``.{{% /notice %}} ## Using the environment @@ -183,7 +180,7 @@ docker run --rm -v "$PWD:/work" -w /work armswdev/sme2-learning-path:sme2-enviro This invokes Docker, using the ``armswdev/sme2-learning-path:sme2-environment-v1``container -image, and mounts the current working directory (the ``SME2-learning-path.git``) +image, and mounts the current working directory (the ``code-examples.git/learning-paths/cross-platform/sme2``) inside the container to ``/work``, then sets ``/work`` as the working directory and runs ``COMMAND ARGUMENTS`` in this environment. @@ -209,4 +206,4 @@ All your commands now run within the container, so there is no need to prepend t {{% notice Note %}} For the rest of this Learning Path, shell commands include the full Docker invocation so that users not using VS Code can copy the complete command line. However, if you are using VS Code, you only need to use the `COMMAND ARGUMENTS` part. -{{% /notice %}} \ No newline at end of file +{{% /notice %}}