mirror of
https://github.com/zhigang1992/SwiftParsec.git
synced 2026-04-29 09:45:57 +08:00
13 lines
410 B
Bash
Executable File
13 lines
410 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ev
|
|
|
|
SWIFT_VERSION="3.0.2"
|
|
SWIFT_URL="https://swift.org/builds/swift-${SWIFT_VERSION}-release/ubuntu1404/swift-${SWIFT_VERSION}-RELEASE/swift-${SWIFT_VERSION}-RELEASE-ubuntu14.04.tar.gz"
|
|
|
|
if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
|
|
mkdir .swift
|
|
curl -sSL "${SWIFT_URL}" | tar xz -C .swift &> /dev/null
|
|
export PATH=$(pwd)/.swift/swift-${SWIFT_VERSION}-RELEASE-ubuntu14.04/usr/bin:$PATH
|
|
fi
|