Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 9 additions & 12 deletions content/learning-paths/cross-platform/sme2/1-get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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.

Expand All @@ -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 %}}
{{% /notice %}}