This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
John Kordich
committed
Aug 10, 2016
1 parent
dcdd0cf
commit 4898174
Showing
1 changed file
with
35 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,39 @@ Microsoft.Management.Infrastructure | |
This repo contains the `Microsoft.Management.Infrastructure` source code (and | ||
soon tests). This is a dependency of PowerShell, but is kept separate. | ||
|
||
Build with `./build.sh` (it runs two commands which can be run by hand). | ||
Environment | ||
=========== | ||
|
||
Test with `./test.sh` (it runs one command which can also be run by hand). | ||
Toolchain Setup | ||
--------------- | ||
|
||
MMI requires the following packages: | ||
|
||
```sh | ||
sudo apt-get install libpam0g-dev libssl-dev libcurl4-openssl-dev | ||
``` | ||
|
||
Also install [PowerShell][] from the latest release per their instructions. | ||
|
||
[powershell]: https://github.com/PowerShell/PowerShell | ||
|
||
Git Setup | ||
--------- | ||
|
||
MMI has a submodule, so clone recursively. | ||
|
||
```sh | ||
git clone --recursive [email protected]:PowerShell/MMI.git | ||
``` | ||
|
||
Build | ||
----- | ||
```sh | ||
./build.sh | ||
``` | ||
|
||
Test | ||
---- | ||
```sh | ||
./test.sh | ||
``` |