forked from rtfeldman/elm-spa-example
-
Notifications
You must be signed in to change notification settings - Fork 11
/
.travis.yml
32 lines (27 loc) · 997 Bytes
/
.travis.yml
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
sudo: false
cache:
directories:
- tests/elm-stuff/build-artifacts
- sysconfcpus
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:
- npm install -g elm@0.19.0-bugfix2 elm-test elm-format
- mv $(npm config get prefix)/bin/elm $(npm config get prefix)/bin/elm-old
- printf '%s\n\n' '#!/bin/bash' 'echo "Running elm with sysconfcpus -n 1"' '$TRAVIS_BUILD_DIR/sysconfcpus/bin/sysconfcpus -n 1 elm-old "$@"' > $(npm config get prefix)/bin/elm
- chmod +x $(npm config get prefix)/bin/elm
- cd tests
- npm install
- cd ..
script:
- elm-format --validate .
- elm-test