mirror of
https://github.com/meteor/meteor.git
synced 2026-01-09 07:38:15 -05:00
35 lines
707 B
YAML
35 lines
707 B
YAML
language: node_js
|
|
os: linux
|
|
dist: jammy
|
|
sudo: required
|
|
services: xvfb
|
|
node_js:
|
|
- "22.17.0"
|
|
cache:
|
|
directories:
|
|
- ".meteor"
|
|
- ".babel-cache"
|
|
script:
|
|
- travis_retry ./packages/test-in-console/run.sh
|
|
env:
|
|
global:
|
|
- CXX=g++-12
|
|
- phantom=false
|
|
- PUPPETEER_DOWNLOAD_PATH=~/.npm/chromium
|
|
- TEST_PACKAGES_EXCLUDE=stylus
|
|
- METEOR_MODERN=true
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-12
|
|
- libnss3
|
|
|
|
before_install:
|
|
- cat /etc/apt/sources.list
|
|
- python3 --version
|
|
- echo "deb http://archive.ubuntu.com/ubuntu jammy main universe" | sudo tee -a /etc/apt/sources.list
|
|
- sudo apt-get update
|
|
- sudo apt-get install -y libnss3
|