We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80920c6 commit 105096aCopy full SHA for 105096a
.travis.yml
@@ -17,13 +17,15 @@ before_install:
17
mkdir -p /usr/local/lib;
18
ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/;
19
ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/;
20
+ elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
21
+ sudo apt-get install libunwind8;
22
fi
23
24
install:
25
- pushd scripts
- - ./download.sh
26
+ - bash <(curl -s https://raw.githubusercontent.com/PowerShell/PowerShell/master/tools/install-powershell.sh)
27
- popd
28
29
script:
30
- ulimit -n 4096
- - powershell -File scripts/travis.ps1
31
+ - pwsh -File scripts/travis.ps1
scripts/download.sh
0 commit comments