aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: e0fd7b8ae585e4bde7b9e3814689e7c2ae4e81a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
matrix:
  include:
    - os: linux
      dist: xenial
      addons:
        apt:
          packages:
            - libx11-dev
            - libxext-dev
            - libxss-dev
            - libxkbfile-dev
            - rpm
    - os: osx
      osx_image: xcode11

language: node_js
# Handle git submodules yourself
git:
  submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
  - git submodule update --init --recursive
install:
  - echo do nothing
before_script:
  - travis_retry npx lerna bootstrap
  - travis_retry npm install node-sass -g
script:
  - travis_retry travis_wait 100 npm run build

cache: npm

branches:
  except:
    - i18n
    - l10n_master
    - l10n_develop