PowerShell/.travis.yml

28 lines
651 B
YAML
Raw Normal View History

language: cpp
os:
- linux
- osx
sudo: required
dist: trusty
osx_image: xcode8
env:
- GITHUB_TOKEN=a27573e27bea23fb05393ead69511b09e3b224be
cache:
directories:
- $HOME/.dotnet
- $HOME/.nuget
addons:
artifacts:
s3_region: "us-west-2"
paths: $(ls powershell*{deb,pkg} | tr "\n" ":")
git:
submodules: false
install:
- git config --global url.git@github.com:.insteadOf https://github.com/
- git submodule update --init
- (cd tools && ./download.sh)
script:
2016-07-05 20:03:58 +02:00
- ulimit -n 4096; powershell -c "Import-Module ./build.psm1; Start-PSBootstrap -Package; Start-PSBuild -Publish; Start-PSPackage; Start-PSPester; Start-PSxUnit"