noredink-ui/.travis.yml

31 lines
733 B
YAML
Raw Normal View History

sudo: false
2018-03-28 05:16:50 +03:00
language: node_js
node_js:
2019-05-03 02:37:44 +03:00
- "10"
2018-03-28 05:16:50 +03:00
cache:
directories:
- node_modules
before_install:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- | # epic build time improvement - see https://github.com/elm-lang/elm-compiler/issues/1473#issuecomment-245704142
if [ ! -d sysconfcpus/bin ];
then
git clone https://github.com/obmarg/libsysconfcpus.git;
cd libsysconfcpus;
./configure --prefix=$TRAVIS_BUILD_DIR/sysconfcpus;
make && make install;
cd ..;
fi
install:
- travis_retry $TRAVIS_BUILD_DIR/sysconfcpus/bin/sysconfcpus -n 2 make -B setup
script:
2018-03-28 06:03:45 +03:00
- $TRAVIS_BUILD_DIR/sysconfcpus/bin/sysconfcpus -n 2 make ci
2018-03-28 01:13:34 +03:00
notifications:
2019-05-03 02:37:44 +03:00
email: false