py3x/.gitlab-ci.yml

32 lines
966 B
YAML
Raw Normal View History

2019-07-04 09:24:38 +00:00
test:smolensk15:
image: smolensk15-dev
only:
- schedules
before_script:
- "[ $(($(date +%s)-$(git log -1 --date=format:%s --format=%cd))) -gt 86400 ] && exit 0"
- apt-get update
2019-07-04 09:27:20 +00:00
- apt-get -y install python3-pytest python3-sphinx python3-setuptools
2019-07-04 09:24:38 +00:00
- git submodule sync
- git submodule update --recursive --init
script:
- "[ $(($(date +%s)-$(git log -1 --date=format:%s --format=%cd))) -gt 86400 ] && exit 0"
- make build
- make tests
test:bionic:
image: bionic-dev
only:
- schedules
before_script:
- "[ $(($(date +%s)-$(git log -1 --date=format:%s --format=%cd))) -gt 86400 ] && exit 0"
- apt-get update
2019-07-04 09:27:20 +00:00
- apt-get -y install python3-pytest python3-sphinx python3-setuptools
- git submodule sync
- git submodule update --recursive --init
script:
- "[ $(($(date +%s)-$(git log -1 --date=format:%s --format=%cd))) -gt 86400 ] && exit 0"
- make build
- make tests
- make html