mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
17 lines
662 B
Bash
Executable File
17 lines
662 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
|
|
|
# Install some custom requirements on OS X
|
|
# Get and install Java 8
|
|
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u66-b17/jdk-8u66-macosx-x64.dmg
|
|
hdiutil mount jdk-8u66-macosx-x64.dmg
|
|
sudo installer -pkg /Volumes/JDK\ 8\ Update\ 66/JDK\ 8\ Update\ 66.pkg -target LocalSystem
|
|
|
|
else
|
|
# Install custom requirements on Linux
|
|
sudo add-apt-repository ppa:wpilib/toolchain -y
|
|
sudo apt-get update -q
|
|
sudo apt-get install frc-toolchain -y
|
|
fi
|