Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MINOR] MacOS guide update #1823

Merged
merged 1 commit into from
May 10, 2023
Merged
Show file tree
Hide file tree
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
26 changes: 21 additions & 5 deletions docs/site/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ limitations under the License.

This guide helps in the install and setup of SystemDS from source code.

- [Windows Guide](#windows)
- [Ubuntu/Linux Guide](#ubuntu-2204)
- [Mac Guide](#mac)
- [Install](#install)
- [Windows](#windows)
- [Ubuntu 22.04](#ubuntu-2204)
- [Testing](#testing)
- [MAC](#mac)
- [2. Build the project](#2-build-the-project)
- [3. Run A Component Test](#3-run-a-component-test)

Once the individual versions is set up skip to the common part of building the system.

Expand Down Expand Up @@ -118,7 +122,7 @@ Prerequisite install homebrew on the device.
brew install coreutils
# To install open jdk 11.
brew tap adoptopenjdk/openjdk
brew cask install adoptopenjdk8
brew cask install adoptopenjdk11
# Install maven to enable compilation of SystemDS.
brew install maven
```
Expand Down Expand Up @@ -169,5 +173,17 @@ mvn package -P distribution
The first time you package the system it will take longer since maven will download the dependencies.
But successive compiles should become faster.

## 3. Run A Component Test

As an example here is how to run the component matrix tests from command line via maven.

```bash
mvn test -Dtest="**.component.matrix.**"
```

To run other tests simply specify other packages by modifying the
test argument part of the command.

Now everything is setup and ready to go!
To execute dml scripts look at [Execute SystemDS](run)

To execute dml scripts look at [Execute SystemDS](run), this step is not needed to develop in systemds, but it helps setting up the command-line execution of systemds.
2 changes: 1 addition & 1 deletion docs/site/run.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ If you want to execute from source code follow the [Install from source](install

## Setting SYSTEMDS_ROOT environment variable

In order to run SystemDS it is highly recomended to setup SystemDS root on path.
In order to run SystemDS it is highly recommended to setup SystemDS root on path.
This works both from your development directory containing source code and if
you download a release of SystemDS.

Expand Down