Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleX
提交
367aece6
P
PaddleX
项目概览
PaddlePaddle
/
PaddleX
通知
138
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
43
列表
看板
标记
里程碑
合并请求
5
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleX
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
43
Issue
43
列表
看板
标记
里程碑
合并请求
5
合并请求
5
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
367aece6
编写于
3月 28, 2020
作者:
L
LaraStuStu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Create .travis.yml
上级
33f48127
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
140 addition
and
0 deletion
+140
-0
DataAnnotation/labelme/.travis.yml
DataAnnotation/labelme/.travis.yml
+140
-0
未找到文件。
DataAnnotation/labelme/.travis.yml
0 → 100644
浏览文件 @
367aece6
language
:
generic
cache
:
-
pip
sudo
:
required
dist
:
trusty
branches
:
only
:
-
master
-
/v\d+\.\d+.\d+/
notifications
:
email
:
false
env
:
global
:
# used by ci-helpers
-
SETUP_XVFB=true
-
PIP_DEPENDENCIES='hacking pytest pytest-qt'
-
MPLBACKEND=TkAgg
# for osx
matrix
:
include
:
-
os
:
osx
env
:
-
PYTEST_QT_API=pyqt5
-
PYQT_PACKAGE='pyqt=5'
-
PYTHON_VERSION=3.6
-
RUN_PYINSTALLER=true
-
os
:
linux
dist
:
trusty
env
:
-
PYTEST_QT_API=pyqt4v2
-
PYQT_PACKAGE='pyqt=4'
-
PYTHON_VERSION=2.7
-
os
:
linux
dist
:
trusty
env
:
-
PYTEST_QT_API=pyside2
-
CONDA_CHANNELS='conda-forge'
-
PYQT_PACKAGE='pyside2!=5.12.4'
-
PYTHON_VERSION=2.7
-
os
:
linux
dist
:
trusty
env
:
-
PYTEST_QT_API=pyside2
-
CONDA_CHANNELS='conda-forge'
-
PYQT_PACKAGE='pyside2'
-
PYTHON_VERSION=3.6
-
os
:
linux
dist
:
trusty
env
:
-
PYTEST_QT_API=pyqt5
-
PYQT_PACKAGE='pyqt=5'
-
PYTHON_VERSION=2.7
-
os
:
linux
dist
:
trusty
env
:
-
PYTEST_QT_API=pyqt5
-
PYQT_PACKAGE='pyqt=5'
-
PYTHON_VERSION=3.6
-
RUN_PYINSTALLER=true
install
:
# Setup X
-
|
if [ $TRAVIS_OS_NAME = "linux" ]; then
sudo apt-get update
# Xvfb / window manager
sudo apt-get install -y xvfb herbstluftwm
elif [ $TRAVIS_OS_NAME = "osx" ]; then
brew cask install xquartz
fi
# Setup miniconda
-
git clone --depth 1 git://github.com/astropy/ci-helpers.git
-
CONDA_DEPENDENCIES=$PYQT_PACKAGE source ci-helpers/travis/setup_conda.sh
-
source activate test && export LD_LIBRARY_PATH=$CONDA_PREFIX/lib:$LD_LIBRARY_PATH
-
pip install .
-
rm -rf ci-helpers miniconda.sh
before_script
:
-
if [ $TRAVIS_OS_NAME = "linux" ]; then (herbstluftwm )& fi
-
if [ $TRAVIS_OS_NAME = "osx" ]; then (sudo Xvfb :99 -ac -screen 0 1024x768x8 )& fi
-
sleep
1
script
:
# Run flake8
-
flake8 examples labelme setup.py tests
# Run help2man
-
conda install -y help2man
# Run pytest
-
pytest -v tests
-
labelme --help
-
labelme --version
# Run examples
-
(cd examples/primitives && labelme_json_to_dataset primitives.json && rm -rf primitives_json)
-
(cd examples/tutorial && rm -rf apc2016_obj3_json && labelme_json_to_dataset apc2016_obj3.json && python load_label_png.py && git checkout -- .)
-
(cd examples/semantic_segmentation && rm -rf data_dataset_voc && ./labelme2voc.py data_annotated data_dataset_voc --labels labels.txt && git checkout -- .)
-
(cd examples/instance_segmentation && rm -rf data_dataset_voc && ./labelme2voc.py data_annotated data_dataset_voc --labels labels.txt && git checkout -- .)
-
(cd examples/video_annotation && rm -rf data_dataset_voc && ./labelme2voc.py data_annotated data_dataset_voc --labels labels.txt && git checkout -- .)
-
pip install lxml
# for bbox_detection/labelme2voc.py
-
(cd examples/bbox_detection && rm -rf data_dataset_voc && ./labelme2voc.py data_annotated data_dataset_voc --labels labels.txt && git checkout -- .)
-
pip install cython && pip install pycocotools
# for instance_segmentation/labelme2coco.py
-
(cd examples/instance_segmentation && rm -rf data_dataset_coco && ./labelme2coco.py data_annotated data_dataset_coco --labels labels.txt && git checkout -- .)
# Run pyinstaller
-
|
if [ "$RUN_PYINSTALLER" = "true" ]; then
# Cleanup
pip uninstall -y $PIP_DEPENDENCIES
# https://github.com/wkentaro/labelme/issues/183
if [ $TRAVIS_OS_NAME = "osx" ]; then
pip uninstall -y Pillow
conda install -y Pillow
fi
# Build the standalone executable
pip install 'pyinstaller!=3.4' # 3.4 raises error
# numpy 1.17 raises error
# See https://github.com/wkentaro/labelme/issues/465
pip install 'numpy<1.17'
pyinstaller labelme.spec
dist/labelme --version
fi
after_script
:
-
true
# noop
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录