0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-08 16:00:19 -05:00
penpot/.travis.yml

41 lines
603 B
YAML
Raw Normal View History

2019-02-15 07:19:00 -05:00
dist: xenial
2019-06-24 12:38:51 -05:00
language: generic
2019-02-15 11:19:22 -05:00
sudo: required
2019-06-24 12:38:51 -05:00
cache:
directories:
- $HOME/.m2
2019-02-15 11:19:22 -05:00
services:
- docker
2018-10-23 16:31:03 -05:00
branches:
only:
- master
- develop
2018-10-23 16:31:03 -05:00
install:
2019-06-24 12:38:51 -05:00
- curl -O https://download.clojure.org/install/linux-install-1.10.1.447.sh
- chmod +x linux-install-1.10.1.447.sh
- sudo ./linux-install-1.10.1.447.sh
2018-10-23 16:31:03 -05:00
before_script:
- env | sort
script:
2019-06-24 12:38:51 -05:00
- ./manage.sh build-devenv
- ./manage.sh run-frontend-tests
- ./manage.sh run-backend-tests
- ./manage.sh build-images
- ./manage.sh run
2018-10-23 16:31:03 -05:00
after_script:
- docker images
notifications:
email: false
env:
2019-06-24 12:38:51 -05:00
- NODE_VERSION=10.16.0