2019-11-19 05:18:28 +03:00
|
|
|
language: node_js
|
2020-02-29 01:53:26 +03:00
|
|
|
os: linux
|
2019-12-06 02:18:55 +03:00
|
|
|
dist: bionic
|
2019-11-19 05:18:28 +03:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2020-02-28 22:02:42 +03:00
|
|
|
# These are required to run webkit
|
|
|
|
- libwoff1
|
|
|
|
- libopus0
|
|
|
|
- libwebp6
|
|
|
|
- libwebpdemux2
|
|
|
|
- libenchant1c2a
|
|
|
|
- libgudev-1.0-0
|
|
|
|
- libsecret-1-0
|
|
|
|
- libhyphen0
|
|
|
|
- libgdk-pixbuf2.0-0
|
|
|
|
- libegl1
|
|
|
|
- libgles2
|
|
|
|
- libevent-2.1-6
|
|
|
|
- libnotify4
|
|
|
|
- libxslt1.1
|
|
|
|
- libvpx5
|
2020-01-31 02:54:53 +03:00
|
|
|
# This is required to run chromium
|
2020-02-28 22:02:42 +03:00
|
|
|
- libgbm1
|
2020-01-31 02:54:53 +03:00
|
|
|
# this is needed for running headful tests
|
2020-02-28 22:02:42 +03:00
|
|
|
- xvfb
|
2019-11-19 05:18:28 +03:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
cache:
|
|
|
|
directories:
|
2020-02-28 22:02:42 +03:00
|
|
|
- node_modules
|
2019-11-19 05:18:28 +03:00
|
|
|
script:
|
2020-03-03 05:35:04 +03:00
|
|
|
- echo "debug"
|
|
|
|
#- npm run lint
|
2020-03-03 05:17:52 +03:00
|
|
|
#- xvfb-run --auto-servernum npm run ctest
|
|
|
|
#- xvfb-run --auto-servernum npm run ftest
|
|
|
|
#- xvfb-run --auto-servernum npm run wtest
|
2019-11-19 05:18:28 +03:00
|
|
|
jobs:
|
|
|
|
include:
|
2020-02-28 22:02:42 +03:00
|
|
|
- node_js: '12'
|
2020-03-03 04:40:48 +03:00
|
|
|
|
2020-03-03 05:26:45 +03:00
|
|
|
before_deploy:
|
2020-03-03 04:40:48 +03:00
|
|
|
- node utils/apply_next_version.js
|
2020-03-03 05:26:45 +03:00
|
|
|
|
|
|
|
deploy:
|
2020-03-03 06:00:47 +03:00
|
|
|
skip_cleanup: true
|
2020-03-03 05:26:45 +03:00
|
|
|
provider: script
|
|
|
|
script: utils/publish_all_packages.sh --tip-of-tree
|
|
|
|
on:
|
|
|
|
branch: master
|