Marco Blessing
d92d963979
* adds certificate store location * add additional certificate store tests * add cert store tests for New-CredentialStoreItem * fix test * add error handling for credential store path * add Import-CSCertificate helper function * Import new certificate if param is given * fix extension filter * add linux error message * fix pester test for linux * update cert helper functions * export helper functions * fix cs cert import * simplify cs cret lookup * remove obsolete functions * fix pester test for linux * fix error type for linux * fix var name * fix pester test * disable travis artifact upload * update cert lookup for item functions * debug build error * use cert instance constructor for linux * disable debug output * remove obsolete exports
43 lines
740 B
YAML
43 lines
740 B
YAML
|
|
language: csharp
|
|
dotnet: 2.2.101
|
|
mono: none
|
|
|
|
git:
|
|
depth: 1000
|
|
|
|
os:
|
|
- linux
|
|
# Disable OSX bulds for now
|
|
# - osx
|
|
|
|
sudo: required
|
|
|
|
dist: xenial
|
|
osx_image: xcode8.1
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
|
|
#addons:
|
|
# artifacts:
|
|
# paths: ./dist/PowerShellGet.zip
|
|
|
|
|
|
install:
|
|
# Default 2.0.0 Ruby is buggy
|
|
# Default bundler version is buggy
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
rvm install ruby-2.3.3;
|
|
rvm --default use 2.3.3;
|
|
fi
|
|
- bash <(wget -O - https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/install-powershell.sh)
|
|
- pushd tools
|
|
- chmod +x travis.sh
|
|
- popd
|
|
|
|
script:
|
|
- echo "TRAVIS_EVENT_TYPE value $TRAVIS_EVENT_TYPE"
|
|
- ./tools/travis.sh
|