devops: attempt to add mac 10.14 (#2076)

This commit is contained in:
Andrey Lushnikov 2020-05-01 14:03:09 -07:00 committed by GitHub
parent f8bea85c88
commit 0e44589bee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,20 @@
language: node_js language: node_js
os: linux notifications:
dist: bionic email: false
addons:
install:
- npm ci
cache:
directories:
- node_modules
jobs:
include:
- os: linux
dist: bionic
node_js: '12'
addons:
apt: apt:
packages: packages:
# These are required to run webkit # These are required to run webkit
@ -24,19 +37,17 @@ addons:
- libgbm1 - libgbm1
# this is needed for running headful tests # this is needed for running headful tests
- xvfb - xvfb
notifications: script:
email: false - npm run lint
install: - xvfb-run --auto-servernum npm run ctest
- npm ci - xvfb-run --auto-servernum npm run ftest
cache: - xvfb-run --auto-servernum npm run wtest
directories: - os: osx
- node_modules osx_image: xcode11.3
script: node_js: '12'
- npm run lint script:
- xvfb-run --auto-servernum npm run ctest - npm run lint
- xvfb-run --auto-servernum npm run ftest - npm run ctest
- xvfb-run --auto-servernum npm run wtest - npm run ftest
jobs: - npm run wtest
include:
- node_js: '12'