avoid wget; fixes #17
This commit is contained in:
parent
30c9d38842
commit
d7061493fc
@ -2,6 +2,8 @@ language: cpp
|
|||||||
install:
|
install:
|
||||||
- sudo apt-get install g++ cmake gfortran
|
- sudo apt-get install g++ cmake gfortran
|
||||||
- sudo pip install pytest pep8
|
- sudo pip install pytest pep8
|
||||||
|
before_script:
|
||||||
|
- export PYTHONPATH=$PYTHONPATH:$(pwd)
|
||||||
script:
|
script:
|
||||||
- pep8 --ignore=E501 update.py
|
- pep8 --ignore=E501 update.py
|
||||||
- pep8 --ignore=E501 test/test.py
|
- pep8 --ignore=E501 test/test.py
|
||||||
|
@ -8,7 +8,8 @@ Bootstrapping Autocmake
|
|||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
Download the ``update.py`` and execute it to fetch other infrastructure files
|
Download the ``update.py`` and execute it to fetch other infrastructure files
|
||||||
which will be needed to build the project::
|
which will be needed to build the project (on Windows ``wget`` is probably
|
||||||
|
not available - in this case use an alternative)::
|
||||||
|
|
||||||
mkdir cmake # does not have to be called "cmake" - take the name you prefer
|
mkdir cmake # does not have to be called "cmake" - take the name you prefer
|
||||||
cd cmake
|
cd cmake
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import os
|
import os
|
||||||
import subprocess
|
import subprocess
|
||||||
|
import update
|
||||||
|
|
||||||
HERE = os.path.abspath(os.path.dirname(__file__))
|
HERE = os.path.abspath(os.path.dirname(__file__))
|
||||||
|
|
||||||
@ -13,7 +14,7 @@ def exe(command):
|
|||||||
|
|
||||||
def test_cxx():
|
def test_cxx():
|
||||||
os.chdir(os.path.join(HERE, 'cxx', 'cmake'))
|
os.chdir(os.path.join(HERE, 'cxx', 'cmake'))
|
||||||
stdout, stderr = exe('wget https://github.com/scisoft/autocmake/raw/master/update.py')
|
update.fetch_url('https://github.com/scisoft/autocmake/raw/master/update.py', 'update.py')
|
||||||
stdout, stderr = exe('python update.py --self')
|
stdout, stderr = exe('python update.py --self')
|
||||||
stdout, stderr = exe('python update.py ..')
|
stdout, stderr = exe('python update.py ..')
|
||||||
os.chdir(os.path.join(HERE, 'cxx'))
|
os.chdir(os.path.join(HERE, 'cxx'))
|
||||||
@ -26,7 +27,7 @@ def test_cxx():
|
|||||||
|
|
||||||
def test_fc():
|
def test_fc():
|
||||||
os.chdir(os.path.join(HERE, 'fc', 'cmake'))
|
os.chdir(os.path.join(HERE, 'fc', 'cmake'))
|
||||||
stdout, stderr = exe('wget https://github.com/scisoft/autocmake/raw/master/update.py')
|
update.fetch_url('https://github.com/scisoft/autocmake/raw/master/update.py', 'update.py')
|
||||||
stdout, stderr = exe('python update.py --self')
|
stdout, stderr = exe('python update.py --self')
|
||||||
stdout, stderr = exe('python update.py ..')
|
stdout, stderr = exe('python update.py ..')
|
||||||
os.chdir(os.path.join(HERE, 'fc'))
|
os.chdir(os.path.join(HERE, 'fc'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user