summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: ec8591a0f5c06585ddbb3195ca8f62f234cd9ad1 (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
dist: xenial
sudo: required
language: node_js
addons:
  apt:
    update: true
    packages:
      - jq
node_js:
- 10.14.1
before_install:
- openssl aes-256-cbc -K $encrypted_576d8886d7a3_key -iv $encrypted_576d8886d7a3_iv
  -in ci/wiki_deploy_key.enc -out ci/wiki_deploy_key -d
- chmod 600 ci/wiki_deploy_key
script:
- truffle compile
deploy:
  skip_cleanup: true
  provider: script
  script: ci/update_wiki.sh
  on:
    all_branches: true
    condition: $TRAVIS_BRANCH =~ ^ci|master$