-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
2,434 additions
and
2,778 deletions.
There are no files selected for viewing
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
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,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# NAME | ||
# _includes.sh - Include reusable code. | ||
# | ||
# SYNOPSIS | ||
# cd "$(dirname "$0")" || exit; source _includes.sh | ||
# | ||
# DESCRIPTION | ||
# Includes common features used by the Travis CI scripts. | ||
|
||
source ../_includes.sh | ||
|
||
if [[ "$ORCA_JOB" = "LIVE_TEST" ]]; then | ||
unset ORCA_PACKAGES_CONFIG | ||
unset ORCA_PACKAGES_CONFIG_ALTER | ||
fi |
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,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
# NAME | ||
# install.sh - Create the test fixture. | ||
# | ||
# SYNOPSIS | ||
# install.sh | ||
# | ||
# DESCRIPTION | ||
# Creates the test fixture and places the SUT. | ||
|
||
cd "$(dirname "$0")" || exit; source _includes.sh | ||
|
||
if [[ "$ORCA_JOB" = "LIVE_TEST" ]]; then | ||
orca debug:packages CURRENT_RECOMMENDED | ||
orca fixture:init -f --core=CURRENT_RECOMMENDED | ||
fi |
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
Oops, something went wrong.