6.1 KiB
PowerShell for Linux
Obtain the source code
Setup Git
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.
The user name and email must be set to do just about anything with Git.
git config --global user.name "First Last"
git config --global user.email "alias@microsoft.com"
I highly recommend these configurations to help deal with whitespace, rebasing, and general use of Git.
Auto-corrects your command when it's sure (
stats
tostatus
)
git config --global help.autoCorrect -1
Refuses to merge when pulling, and only pushes to branch with same name.
git config --global pull.ff only
git config --global push.default current
Shows shorter commit hashes and always shows reference names in the log.
git config --global log.abbrevCommit true
git config --global log.decorate short
Ignores whitespace changes and uses more information when merging.
git config --global apply.ignoreWhitespace change
git config --global rerere.enabled true
git config --global rerere.autoUpdate true
git config --global am.threeWay true
Setup Visual Studio Online authentication
To use Git's https
protocol with VSO, you'll want to setup tokens, and have Git remember them.
git config --global credential.helper store
- Login to https://msostc.visualstudio.com
- Click your name in the upper left corner and click 'My profile'
- Click the "Security" tab in the left pane (under "Details")
- Click "Add"
- Enter "msostc" for "Description"
- Set "Expires In" to "1 year"
- Choose " msostc" for "Accounts"
- Choose "All scopes"
- Click "Create Token" (you may want to copy this token somewhere safe, as VSO will not show it again!)
- Use this token as the password when cloning (and your username for the username)
Download source code
Clone our monad-linux source from Visual Studio Online, it's the superproject with a number of submodules.
git clone --recursive https://msostc.visualstudio.com/DefaultCollection/PS/_git/monad-linux
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.
Setup build environment
There are two approaches. You can build in our Docker container and have all the dependencies taken care of for you, or you can install them by hand and run "baremetal."
Docker
See the official installation documentation on how to install Docker, and don't forget to setup a Docker group.
The Docker container can be updated with docker pull andschwa/magrathea
, which downloads it from the automated build repository.
This container isolates all our build dependencies, including Ubuntu 14.04 and Mono. See the Dockerfile to look under the hood.
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
.
Building
Please note that the square brackets indicate that part is only necessary if building within the Docker container. If running baremetal, ignore them.
cd scripts
since it contains theMakefile
andmonad-run.sh
[source monad-docker.sh]
to get themonad-run
andmonad-it
Bash functions[monad-run] make
will build PowerShell for Linux and execute the managed and native unit tests[monad-run] make demo
will build and execute a demo,"a","b","c","a","a" | Select-Object -Unique
[monad-run] make test
will build PowerShell and execute the Pester smoke tests[monad-it] make shell
will open an interactive PowerShell console (note theit
for--interactive --tty
)make clean
will remove built librariesmake distclean
will remove all untracked files inmonad-native
(such as CMake's generated files) as well as generated files formonad
git clean -fdx && git submodule foreach git clean -fdx
will nuke everything that is untracked by Git in all repositories, use with caution
Adding Pester tests
Pester tests are located in the src/pester-tests
folder. The makefile targets test
and pester-tests
will run all Pester tests.
The steps to add your pester tests are:
- add
*.Tests.ps1
files tosrc/pester-tests
- run
make test
to run all the tests