Skip to content

Commit

Permalink
[CI] Migrate to GH Actions (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
tqchen committed Feb 19, 2021
1 parent 56e6b6c commit 2048e9a
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 78 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/main.yaml
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
Build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2

- name: Setup Python
run: |
python3 -m pip install cpplint
- name: Setup@Ubuntu
if: startsWith(matrix.os, 'ubuntu')
run: |
sudo apt-get install -y doxygen wget graphviz unzip
- name: Lint
if: startsWith(matrix.os, 'ubuntu')
run: |
./tests/scripts/task_lint.sh
- name: Test
run: |
./tests/scripts/task_build.sh
46 changes: 0 additions & 46 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# DLPack: Open In Memory Tensor Structure

[![Build Status](https://travis-ci.org/dmlc/dlpack.svg?branch=main)](https://travis-ci.org/dmlc/dlpack)
[![Build Status](https://github.com/dmlc/dlpack/workflows/CI/badge.svg)](https://github.com/dmlc/dlpack/actions?query=workflow%3ACI)

DLPack is an open in-memory tensor structure to for sharing tensor among frameworks. DLPack enables

Expand Down
14 changes: 0 additions & 14 deletions docs/Doxyfile
Expand Up @@ -2040,12 +2040,6 @@ EXTERNAL_GROUPS = YES

#EXTERNAL_PAGES = YES

# The PERL_PATH should be the absolute path and name of the perl script
# interpreter (i.e. the result of 'which perl').
# The default file (with absolute path) is: /usr/bin/perl.

PERL_PATH = /usr/bin/perl

#---------------------------------------------------------------------------
# Configuration options related to the dot tool
#---------------------------------------------------------------------------
Expand All @@ -2059,14 +2053,6 @@ PERL_PATH = /usr/bin/perl

CLASS_DIAGRAMS = YES

# You can define message sequence charts within doxygen comments using the \msc
# command. Doxygen will then run the mscgen tool (see:
# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
# documentation. The MSCGEN_PATH tag allows you to specify the directory where
# the mscgen tool resides. If left empty the tool is assumed to be found in the
# default search path.

MSCGEN_PATH =

# You can include diagrams made with dia in doxygen documentation. Doxygen will
# then run dia to produce the diagram and insert it in the documentation. The
Expand Down
12 changes: 0 additions & 12 deletions tests/travis/run_test.sh

This file was deleted.

5 changes: 0 additions & 5 deletions tests/travis/setup.sh

This file was deleted.

0 comments on commit 2048e9a

Please sign in to comment.