зеркало из https://github.com/microsoft/nni.git
20 строки
490 B
YAML
20 строки
490 B
YAML
dist: xenial
|
|
sudo: required
|
|
language: python
|
|
python:
|
|
- "3.6"
|
|
before_install:
|
|
- wget https://nodejs.org/dist/v10.10.0/node-v10.10.0-linux-x64.tar.xz
|
|
- tar xf node-v10.10.0-linux-x64.tar.xz
|
|
- sudo mv node-v10.10.0-linux-x64 /usr/local/node
|
|
- export PATH=/usr/local/node/bin:$PATH
|
|
- sudo sh -c 'PATH=/usr/local/node/bin:$PATH yarn global add serve'
|
|
install:
|
|
- make
|
|
- make install
|
|
- export PATH=$HOME/.nni/bin:$PATH
|
|
before_script:
|
|
- cd test/naive
|
|
script:
|
|
- python3 run.py
|