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

Update distribution build instructions to reflect file names with OS/architecture classifiers. #39762

Merged
merged 1 commit into from
Mar 7, 2019
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
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@ Run all build commands from within the root directory:
cd elasticsearch/
```

To build a tar distribution, run this command:
To build a darwin-tar distribution, run this command:

```sh
./gradlew -p distribution/archives/tar assemble --parallel
./gradlew -p distribution/archives/darwin-tar assemble --parallel
```

You will find the distribution under:
`./distribution/archives/tar/build/distributions/`
`./distribution/archives/darwin-tar/build/distributions/`

To create all build artifacts (e.g., plugins and Javadocs) as well as
distributions in all formats, run this command:
Expand All @@ -219,10 +219,10 @@ distributions in all formats, run this command:
```

The package distributions (Debian and RPM) can be found under:
`./distribution/packages/(deb|rpm)/build/distributions/`
`./distribution/packages/(deb|rpm|oss-deb|oss-rpm)/build/distributions/`

The archive distributions (tar and zip) can be found under:
`./distribution/archives/(tar|zip)/build/distributions/`
`./distribution/archives/(darwin-tar|linux-tar|windows-zip|oss-darwin-tar|oss-linux-tar|oss-windows-zip)/build/distributions/`

### Running The Full Test Suite

Expand Down