@@ -50,7 +50,7 @@ matrix:
50
50
- python : " nightly"
51
51
52
52
before_install :
53
- - source tools /travis_tools.sh
53
+ - source ci/travis /travis_tools.sh
54
54
# Install into our own pristine virtualenv
55
55
- virtualenv --python=python venv
56
56
- source venv/bin/activate
@@ -90,7 +90,7 @@ install:
90
90
fc-cache -f -v
91
91
else
92
92
# Use the special local version of freetype for testing
93
- cp . travis/setup.cfg .
93
+ cp ci/ travis/setup.cfg .
94
94
fi;
95
95
96
96
- pip install -e .
@@ -130,10 +130,10 @@ after_success:
130
130
if [[ $TRAVIS_PULL_REQUEST == false && $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' && $BUILD_DOCS == true && $TRAVIS_BRANCH == 'master' ]]; then
131
131
cd $TRAVIS_BUILD_DIR
132
132
echo "Uploading documentation"
133
- openssl aes-256-cbc -K $encrypted_cc802e084cd0_key -iv $encrypted_cc802e084cd0_iv -in . travis/matplotlibDeployKey.enc -out . travis/matplotlibDeployKey -d
133
+ openssl aes-256-cbc -K $encrypted_cc802e084cd0_key -iv $encrypted_cc802e084cd0_iv -in ci/ travis/matplotlibDeployKey.enc -out ci/ travis/matplotlibDeployKey -d
134
134
eval `ssh-agent -s`
135
- chmod 600 . travis/matplotlibDeployKey
136
- ssh-add . travis/matplotlibDeployKey
135
+ chmod 600 ci/ travis/matplotlibDeployKey
136
+ ssh-add ci/ travis/matplotlibDeployKey
137
137
cd ..
138
138
git clone [email protected] :matplotlib/devdocs.git
139
139
cd devdocs
@@ -154,12 +154,12 @@ after_success:
154
154
[[ $TRAVIS_REPO_SLUG == 'matplotlib/matplotlib' ]] && \
155
155
[[ $TRAVIS_BRANCH == 'master' ]]; then
156
156
cd $TRAVIS_BUILD_DIR
157
- python . travis/travis_after_all.py
157
+ python ci/ travis/travis_after_all.py
158
158
export $(cat .to_export_back)
159
159
if [ "$BUILD_LEADER" = "YES" ]; then
160
160
if [ "$BUILD_AGGREGATE_STATUS" = "others_succeeded" ]; then
161
161
echo "All Succeeded! Triggering OSX build..."
162
- ./. travis/build_children.sh
162
+ ./ci/ travis/build_children.sh
163
163
else
164
164
echo "Some Failed; no OSX build"
165
165
fi
0 commit comments