jjb: binutils-gdb: replace sum2junit script with Python implementation
[lttng-ci.git] / scripts / lttng-www / deploy.sh
index 55f295878835e6a6b8d1a65310356d22b87ff0e2..471925223c859a89053c7282b5d8e5f1f31a21cf 100755 (executable)
 set -exu
 
 # Add ssh key for deployment
-echo "StrictHostKeyChecking no" >> ~/.ssh/config
+cp "$HOST_PUBLIC_KEYS" ~/.ssh/known_hosts
 cp "$KEY_FILE_VARIABLE" ~/.ssh/id_rsa
 
 # lttng-www dependencies
 
 # Nodejs
 # Using Debian, as root
-curl -fsSL https://deb.nodesource.com/setup_15.x | bash -
+curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
 apt-get install -y nodejs
 
-apt-get install -y ruby asciidoc xmlto
+apt-get install -y ruby-dev asciidoc xmlto python3 python3-pip
 
 npm install -g grunt-cli
 npm install -g sass
 
-./bootstrap-ubuntu.sh
+export PATH="/root/.gem/ruby/2.5.0/bin:$PATH"
+
+./bootstrap.sh
 
 grunt build:prod
 grunt deploy:prod
This page took 0.038483 seconds and 4 git commands to generate.