We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb9e90a commit 5612828Copy full SHA for 5612828
1 file changed
tests/bin/setup-node.sh
@@ -37,6 +37,15 @@ apt-get install -yq curl mercurial python-dev libffi-dev libpq-dev libyaml-dev g
37
curl -sSL https://raw.githubusercontent.com/pypa/pip/7.0.3/contrib/get-pip.py | python -
38
pip install virtualenv
39
40
+# Use cabal (Haskell installer) to build and install ShellCheck
41
+apt-get install -yq cabal-install
42
+cabal update
43
+cd /tmp
44
+git clone --branch v0.3.8 --single-branch https://github.com/koalaman/shellcheck.git
45
+cd shellcheck
46
+cabal install --global
47
+apt-get purge -yq cabal-install
48
+
49
# create jenkins user and install node bootstrap script
50
useradd -G docker,vboxusers -s /bin/bash --system -m jenkins
51
mkdir -p /home/jenkins/bin
0 commit comments