Skip to content
Snippets Groups Projects
.travis.yml 783 B
Newer Older
Andrei Gavrilescu's avatar
Andrei Gavrilescu committed
      osx_image: xcode9.4
Andrei Gavrilescu's avatar
Andrei Gavrilescu committed
      node_js: '12'
Andrei Gavrilescu's avatar
Andrei Gavrilescu committed
      node_js: '12'
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - libx11-dev
            - zlib1g-dev
            - libpng12-dev
            - libxtst-dev
            - g++-4.8
            - gcc-4.8

before_script:
  - | # Fix chrome-sandbox: https://github.com/electron/electron/issues/17972
      if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
        echo "Fixing chrome-sandbox permissions..."
        sudo chown root ./node_modules/electron/dist/chrome-sandbox
        sudo chmod 4755 ./node_modules/electron/dist/chrome-sandbox
      fi