forked from appleseedhq/appleseed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run test scenes when building master
The wiki explaining how it works is available [here](https://github.com/appleseedhq/appleseed/wiki/Custom-continuous-integration). Test report is available [here](http://107.170.222.178:8181/). Another Travis job in Ship mode was added to the jobs list. We should consider removing some jobs to use less computer power. The process to run the test scenes is the following: 1. Wait for the Ship build job to be done 2. Send the build to a custom server 3. Ask the custom server to run test scenes script
- Loading branch information
Showing
4 changed files
with
106 additions
and
13 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
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,79 @@ | ||
#!/bin/bash | ||
|
||
# | ||
# This source file is part of appleseed. | ||
# Visit https://appleseedhq.net/ for additional information and resources. | ||
# | ||
# This software is released under the MIT license. | ||
# | ||
# Copyright (c) 2020 Kevin Masson, The appleseedhq Organization | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
# | ||
|
||
|
||
set -e | ||
|
||
THISDIR=`pwd` | ||
|
||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Create a report. | ||
#-------------------------------------------------------------------------------------------------- | ||
|
||
echo "travis_fold:start:report" | ||
echo "Creating a report..." | ||
|
||
touch build_report.txt | ||
|
||
echo "web url=$TRAVIS_BUILD_WEB_URL" >> build_report.txt | ||
echo "job url=$TRAVIS_JOB_WEB_URL" >> build_report.txt | ||
echo "commit=$TRAVIS_COMMIT" >> build_report.txt | ||
echo "commit message=$TRAVIS_COMMIT_MESSAGE" >> build_report.txt | ||
echo "job id=$TRAVIS_JOB_ID" >> build_report.txt | ||
echo "job name=$TRAVIS_JOB_NAME" >> build_report.txt | ||
echo "job number=$TRAVIS_JOB_NUMBER" >> build_report.txt | ||
|
||
echo "travis_fold:end:report" | ||
|
||
|
||
#-------------------------------------------------------------------------------------------------- | ||
# Deploy build. | ||
#-------------------------------------------------------------------------------------------------- | ||
|
||
echo "travis_fold:start:deploy" | ||
echo "Deploy travis build on the server..." | ||
|
||
# Add server public key to known hosts. | ||
echo $DEPLOY_SSH_KEY >> $HOME/.ssh/known_hosts | ||
|
||
# Send build to server. | ||
export SSHPASS=$DEPLOY_PASSWORD | ||
sshpass -e rsync \ | ||
-raz --stats -no-perms --no-owner --no-group \ | ||
--exclude 'src' \ | ||
--exclude 'docs' \ | ||
--exclude 'cmake' \ | ||
./* \ | ||
$DEPLOY_USER@$DEPLOY_URL:$DEPLOY_FOLDER | ||
|
||
echo "travis_fold:end:deploy" | ||
|
||
|
||
set +e |