diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-05-16 13:50:13 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-05-16 13:50:13 -0700 |
commit | 1a081b80e1406144a6a7aa650884a4e64afc466c (patch) | |
tree | f796a36f564b673579020722bc9265fe4b100c49 | |
parent | b8eec609b60ca00cb6d8d2bb253e11f8dc474b53 (diff) | |
download | fatcat-scholar-1a081b80e1406144a6a7aa650884a4e64afc466c.tar.gz fatcat-scholar-1a081b80e1406144a6a7aa650884a4e64afc466c.zip |
initial gitlab-ci file
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..f91f0ae --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ + +# This image comes with: +# - ubuntu:xenial (what IA infrastructure runs circa spring 2020) +# - python3 dev setup +# - pipenv +image: "bnewbold/fatcat-test-base:latest" + +before_script: + - pipenv --version + +variables: + LC_ALL: "C.UTF-8" + LANG: "C.UTF-8" + +test_python: + script: + - pipenv install --dev --deploy + - make test |