Spaces:
Sleeping
Sleeping
language: julia | |
julia: | |
- 1 | |
jobs: | |
include: | |
- name: "Linux" | |
os: linux | |
before_install: sudo apt-get -y install python3-pip python3-setuptools | |
- name: "macOS" | |
os: osx | |
before_install: python3 --version; pip3 --version; sw_vers | |
- name: "Windows" | |
os: windows | |
before_install: | |
- choco install python | |
- python -m ensurepip | |
- python -m pip install --upgrade pip | |
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH | |
allow_failures: | |
- os: linux | |
- os: windows | |
before_script: | |
- export PATH=$HOME/.local/bin:$PATH | |
script: | |
- julia --color=yes -e 'using Pkg; pkg"add Optim; add SpecialFunctions; precompile;"' | |
- ./test/travis.sh | |