mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-11-05 04:48:00 +00:00
24 lines
480 B
YAML
24 lines
480 B
YAML
language: python
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
# We need an older version of python in order to have compatibility with
|
|
# older versions of libc
|
|
dist: xenial
|
|
python: 3.6
|
|
- os: osx
|
|
language: generic
|
|
|
|
script:
|
|
- make ci-info
|
|
- make ci-install-plugins
|
|
- make test
|
|
- make ci-bundle
|
|
|
|
deploy:
|
|
# Create github release and push binary to github
|
|
- provider: script
|
|
script: make ci-github
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true |