forked from mikaem/fenicstools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
54 lines (44 loc) · 1.52 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
language: generic
os: osx
osx_image: xcode9.2
sudo: false
env:
matrix:
- CONDA_PY=37
global:
- secure: "FsaxTWmCYU8spBD/dlo7ZOEV801Wivdop8JkosJTnGxbfbIiyN6naSfflrm9d8vKPKvSB7ics+QVr4s0dZ2f/jT0o0GdCqUr7hgeSeprUtWlZHBNMVggZIp1Dke7Y4gLgOJ5Jwg8hRkn3pzClip54nFqwSqEuS9gSuKzsQbNVMM="
before_install:
# Remove homebrew.
- |
echo ""
echo "Removing homebrew from Travis CI to avoid conflicts."
curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall > ~/uninstall_homebrew
chmod +x ~/uninstall_homebrew
~/uninstall_homebrew -fq
rm ~/uninstall_homebrew
install:
# Install Miniconda.
- |
echo ""
echo "Installing a fresh version of Miniconda."
MINICONDA_URL="https://repo.continuum.io/miniconda"
MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh"
curl -L -O "${MINICONDA_URL}/${MINICONDA_FILE}"
bash $MINICONDA_FILE -b
# Configure conda
- |
echo ""
echo "Configuring conda."
source /Users/travis/miniconda3/bin/activate root
conda config --set always_yes yes
conda config --add channels defaults
conda config --add channels conda-forge
conda config --set show_channel_urls true
conda install -n root conda-build anaconda-client
script:
- conda build conf/conda
after_success:
- |
source /Users/travis/miniconda3/bin/activate root
cd conf/conda
anaconda -t $BINSTAR_TOKEN upload -u mikaem -c main --skip-existing ~/miniconda3/conda-bld/osx-64/*.tar.bz2