From 3b820aad737fa1a965659a36d8df9e81c696a409 Mon Sep 17 00:00:00 2001 From: Peter Karalekas Date: Sun, 13 Jan 2019 13:07:58 -0800 Subject: [PATCH] Add .gitlab-ci.yml for running unit tests using GitLab CI --- .gitlab-ci.yml | 8 ++++++++ README.md | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..837ac80 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,8 @@ +test: + tags: + - github + image: python:3.6 + script: + - apt-get update && apt-get install -y libblas-dev liblapack-dev + - pip install tox + - tox diff --git a/README.md b/README.md index 07cd5f9..a9cdba2 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Grove A collection of quantum algorithms built using the Rigetti Forest platform. Grove is licensed under the [Apache 2.0 license](https://github.com/rigetticomputing/grove/blob/master/LICENSE). -[![Build Status](https://semaphoreci.com/api/v1/rigetti/grove/branches/master/badge.svg)](https://semaphoreci.com/rigetti/grove) +[![pipeline status](https://gitlab.com/rigetti/grove/badges/master/pipeline.svg)](https://gitlab.com/rigetti/grove/commits/master) [![Documentation Status](https://readthedocs.org/projects/grove-docs/badge/)](http://grove-docs.readthedocs.io/en/latest/) Grove currently includes: @@ -134,6 +134,6 @@ bibTeX: Text: ``` -R. Smith, M. J. Curtis and W. J. Zeng, "A Practical Quantum Instruction Set Architecture," (2015), +R. Smith, M. J. Curtis and W. J. Zeng, "A Practical Quantum Instruction Set Architecture," (2015), arXiv:1608.03355 [quant-ph], https://arxiv.org/abs/1608.03355 ```