Merge "jjb: Add job to build and deploy bt2 website"
[lttng-ci.git] / scripts / lttng-www / deploy.sh
1 #!/bin/bash
2 # shellcheck disable=SC2103
3 #
4 # Copyright (C) 2021 Jonathan Rajotte-Julien <jonathan.rajotte-julien@efficios.com>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18
19 set -exu
20
21 RUBY_VERSION=2.7
22
23 # Add ssh key for deployment
24 cp "$HOST_PUBLIC_KEYS" ~/.ssh/known_hosts
25 cp "$KEY_FILE_VARIABLE" ~/.ssh/id_rsa
26
27 # lttng-www dependencies
28
29 # Nodejs
30 # Using Debian, as root
31 curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
32 apt-get install -y nodejs
33
34 apt-add-repository ppa:brightbox/ruby-ng
35 apt-get install -y ruby${RUBY_VERSION} ruby${RUBY_VERSION}-dev ruby-switch ruby-bundler
36
37 ruby-switch --list
38 ruby-switch --set ruby${RUBY_VERSION}
39
40 ruby -v
41
42 apt-get install -y asciidoc xmlto python3 python3-pip
43
44 npm install -g grunt-cli
45 npm install -g sass
46
47 export PATH="/root/.gem/ruby/${RUBY_VERSION}.0/bin:$PATH"
48
49 bundle config set --local path "/root/.gem"
50
51 ./bootstrap.sh
52
53 grunt build:prod
54 grunt deploy:prod
55
56 # EOF
This page took 0.029874 seconds and 4 git commands to generate.