"tests/python/git@developer.sourcefind.cn:OpenDAS/dgl.git" did not exist on "97286f98d3a54b694e624d1167fb51eb8c427005"
Unverified Commit beaeb8a8 authored by Minjie Wang's avatar Minjie Wang Committed by GitHub
Browse files

Setup Jenkins (#30)

* jenkins init

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* fix

* test succ (#1)

* test succ

* test fail

* fix fail

* fix jenkins

* icon

* icon

* icon
parent 57f480f5
pipeline {
agent {
docker {
image 'pytorch/pytorch'
}
}
stages {
stage('SETUP') {
steps {
sh 'easy_install nose'
}
}
stage('BUILD') {
steps {
dir('python') {
sh 'python setup.py install'
}
}
}
stage('TEST') {
steps {
sh 'nosetests tests -v --with-xunit'
}
}
}
post {
always {
junit '*.xml'
}
}
}
# Deep Graph Library # Deep Graph Library
[![Build Status](http://216.165.71.225:8080/buildStatus/icon?job=DGL-fork/master)](http://216.165.71.225:8080/job/DGL-fork/master)
[![GitHub license](https://dmlc.github.io/img/apache2.svg)](./LICENSE)
## Architecture ## Architecture
Show below, there are three sets of APIs for different models. Show below, there are three sets of APIs for different models.
......
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import os.path
with open(os.path.join(os.path.dirname(__file__), 'VERSION')) as f:
version = f.readline().strip()
setuptools.setup(
name='dgl',
version=version,
description='Deep Graph Library',
maintainer='DGL Team',
maintainer_email='wmjlyjemaine@gmail.com',
packages=setuptools.find_packages(),
install_requires=[
'numpy>=1.14.0',
'scipy>=1.1.0',
'networkx>=2.1',
],
data_files=[('', ['VERSION'])],
url='https://github.com/jermainewang/dgl-1')
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment