-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from timvideos/travis
Small travis fixes.
- Loading branch information
Showing
6 changed files
with
126 additions
and
62 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#vim : | ||
sudo: required | ||
|
||
language: | ||
|
@@ -9,13 +8,18 @@ compiler: | |
|
||
install: | ||
- wget -q -O- https://raw.githubusercontent.com/mithro/travis-trusty/master/setup.sh | bash | ||
- chmod a+rx $PWD/.travis-*.sh | ||
- /trusty/run.py $PWD/.travis-setup.sh | ||
- chmod a+rx $PWD/.travis/*.sh | ||
- /trusty/run.py $PWD/.travis/setup.sh | ||
|
||
script: | ||
- /trusty/run.py $PWD/.travis-run.sh | ||
- /trusty/run.py $PWD/.travis/run.sh | ||
|
||
notifications: | ||
email: | ||
- [email protected] | ||
irc: "irc.freenode.org#hdmi2usb" | ||
email: | ||
- [email protected] | ||
irc: | ||
channels: | ||
- "chat.freenode.net#hdmi2usb" | ||
- "chat.freenode.net#timvideos" | ||
template: | ||
- "[%{repository_slug}/%{branch}#%{build_number}] (%{commit}): %{message} (%{build_url})" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
set -e | ||
|
||
sudo apt-get install -y realpath | ||
|
||
# Run the script once to check it works | ||
time scripts/get-env.sh | ||
# Run the script again to check it doesn't break things | ||
time scripts/get-env.sh | ||
|
||
set +x | ||
set +e | ||
. scripts/setup-env.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters