PowerShell/README.md

122 lines
6.1 KiB
Markdown
Raw Normal View History

2015-07-02 00:06:29 +02:00
# PowerShell for Linux
2015-10-08 22:44:37 +02:00
## Obtain the source code
2015-07-02 00:06:29 +02:00
2015-10-08 22:44:37 +02:00
### Setup Git
2015-07-02 00:06:29 +02:00
2015-11-06 20:55:01 +01:00
Install [Git][], the version control system. If you're new to Git, peruse the documentation and go through some tutorials; I recommend familiarizing yourself with `checkout`, `branch`, `pull`, `push`, `merge`, and after a while, `rebase` and `cherry-pick`. Please commit early and often.
2015-10-08 22:25:59 +02:00
The user name and email must be set to do just about anything with Git.
2015-07-02 00:06:29 +02:00
```sh
git config --global user.name "First Last"
git config --global user.email "alias@microsoft.com"
2015-07-02 00:06:29 +02:00
```
2015-10-08 22:25:59 +02:00
I highly recommend these configurations to help deal with whitespace, rebasing, and general use of Git.
2015-07-02 00:06:29 +02:00
2015-10-16 01:28:40 +02:00
> Auto-corrects your command when it's sure (`stats` to `status`)
2015-07-02 00:06:29 +02:00
```sh
2015-10-08 22:25:59 +02:00
git config --global help.autoCorrect -1
2015-10-16 01:28:40 +02:00
```
> Refuses to merge when pulling, and only pushes to branch with same name.
```sh
2015-10-08 22:25:59 +02:00
git config --global pull.ff only
git config --global push.default current
2015-10-16 01:28:40 +02:00
```
> Shows shorter commit hashes and always shows reference names in the log.
```sh
git config --global log.abbrevCommit true
git config --global log.decorate short
```
> Ignores whitespace changes and uses more information when merging.
```sh
git config --global apply.ignoreWhitespace change
2015-10-08 22:25:59 +02:00
git config --global rerere.enabled true
git config --global rerere.autoUpdate true
2015-10-16 01:28:40 +02:00
git config --global am.threeWay true
2015-07-02 00:06:29 +02:00
```
2015-10-08 22:25:59 +02:00
[Git]: https://git-scm.com/documentation
2015-10-08 22:44:37 +02:00
### Setup Visual Studio Online authentication
2015-10-08 22:25:59 +02:00
To use Git's `https` protocol with VSO, you'll want to setup tokens, and have Git remember them.
2015-10-08 22:25:59 +02:00
1. `git config --global credential.helper store`
2. Login to <https://msostc.visualstudio.com>
3. Click your name in the upper left corner and click 'My profile'
4. Click the "Security" tab in the left pane (under "Details")
5. Click "Add"
6. Enter "msostc" for "Description"
7. Set "Expires In" to "1 year"
8. Choose " msostc" for "Accounts"
9. Choose "All scopes"
10. Click "Create Token" (you may want to copy this token somewhere safe, as VSO will not show it again!)
2015-10-08 22:44:37 +02:00
11. Use this token as the password when cloning (and your username for the username)
2015-07-02 00:06:29 +02:00
2015-10-08 22:44:37 +02:00
### Download source code
2015-07-02 00:06:29 +02:00
2015-10-08 22:25:59 +02:00
Clone our [monad-linux][] source from Visual Studio Online, it's the superproject with a number of submodules.
2015-07-02 00:06:29 +02:00
```sh
2015-10-08 22:25:59 +02:00
git clone --recursive https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-linux
2015-07-02 00:06:29 +02:00
```
2015-11-06 20:55:01 +01:00
Please read the documentation on [submodules][] if you're not familiar with them. Note that because VSO's "Complete Pull Request" button merges with `--no-ff`, an extra merge commit will always be created. This can be annoying when trying to commit updates to submodules. When a submodule PR is approved, you can "complete" it without a merge commit by merging it to develop manually and pushing the updated head.
Our convention is to create feature branches `dev/feature` off our integration branch `develop`. We then merge `develop` to `master` every few weeks when it is stable.
2015-07-02 00:06:29 +02:00
[monad-linux]: https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-linux
2015-10-08 22:25:59 +02:00
[submodules]: https://www.git-scm.com/book/en/v2/Git-Tools-Submodules
2015-07-02 00:06:29 +02:00
2015-10-08 22:44:37 +02:00
## Setup build environment
2015-11-06 20:55:01 +01:00
There are two approaches. You can build in our Docker container and have all the [dependencies](docs/Dependencies.md) taken care of for you, or you can install them by hand and run "baremetal."
2015-10-08 22:44:37 +02:00
### Docker
2015-10-08 22:25:59 +02:00
See the official [installation documentation][] on how to install Docker, and don't forget to setup a [Docker group][].
2015-10-08 22:25:59 +02:00
The Docker container can be updated with `docker pull andschwa/magrathea`, which downloads it from the [automated build repository][].
2015-10-08 22:25:59 +02:00
This container isolates all our build dependencies, including Ubuntu 14.04 and Mono. See the [Dockerfile][] to look under the hood.
2015-11-06 20:55:01 +01:00
The `monad-docker.sh` script has two Bash functions, `monad-run` and `monad-it`, which are wrappers that start a temporary container with `monad-linux` mounted and runs the arguments given to the script as your current user, but inside the container. The build artifacts will exist in your local folder and be owned by your user, essentially making the use of the container invisible. The `monad-tty` version also allocates a shell for the container, and so allows you to launch Bash or an interactive PowerShell session. Since these are Bash functions, it is simplest to source the `monad-docker.sh` script directly in your `~/.bashrc`, but the `./build.sh` script will also source it and delegate to `monad-run`.
[Docker group]: https://docs.docker.com/installation/ubuntulinux/#create-a-docker-group
[installation documentation]: https://docs.docker.com/installation/ubuntulinux/
[automated build repository]: https://registry.hub.docker.com/u/andschwa/magrathea/
[Dockerfile]: https://github.com/andschwa/docker-magrathea/blob/master/Dockerfile
2015-10-08 22:25:59 +02:00
[Make]: https://www.gnu.org/software/make/manual/make.html
[CMake]: http://www.cmake.org/cmake/help/v2.8.12/cmake.html
2015-10-08 22:44:37 +02:00
## Building
2015-07-02 00:06:29 +02:00
2015-11-06 20:55:01 +01:00
Please note that the square brackets indicate that part is only necessary if building within the Docker container. If running baremetal, ignore them.
2015-10-16 01:28:40 +02:00
1. `cd scripts` since it contains the `Makefile` and `monad-run.sh`
2015-11-06 20:55:01 +01:00
2. `[source monad-docker.sh]` to get the `monad-run` and `monad-it` Bash functions
2. `[monad-run] make` will build PowerShell for Linux and execute the managed and native unit tests
3. `[monad-run] make demo` will build and execute a demo, `"a","b","c","a","a" | Select-Object -Unique`
4. `[monad-run] make test` will build PowerShell and execute the Pester smoke tests
5. `[monad-it] make shell` will open an interactive PowerShell console (note the `it` for `--interactive --tty`)
6. `make clean` will remove built libraries
7. `make distclean` will remove all untracked files in `monad-native` (such as CMake's generated files) as well as generated files for `monad`
8. `git clean -fdx && git submodule foreach git clean -fdx` will nuke everything that is untracked by Git in all repositories, use with caution
2015-07-02 00:06:29 +02:00
2015-10-08 22:44:37 +02:00
## Adding Pester tests
2015-07-13 23:49:18 +02:00
2015-10-08 22:44:37 +02:00
Pester tests are located in the `src/pester-tests` folder. The makefile targets `test` and `pester-tests` will run all Pester tests.
2015-07-13 23:49:18 +02:00
The steps to add your pester tests are:
2015-10-24 01:09:07 +02:00
- add `*.Tests.ps1` files to `src/pester-tests`
2015-11-06 20:55:01 +01:00
- run `make test` to run all the tests
2015-07-13 23:49:18 +02:00
## TODO: Docker shell-in-a-box
2015-07-02 00:06:29 +02:00
## TODO: Architecture