Tweak fuse.conf after the fuse package is installed, not before.
[arvados-dev.git] / jenkins / packer-images / jenkins-image-arvados-formula-tests.sh
1 #!/bin/bash
2
3 # Copyright (C) The Arvados Authors. All rights reserved.
4 #
5 # SPDX-License-Identifier: Apache-2.0
6
7 set -eo pipefail
8
9 # Install the dependencies for the package building/testing jobs
10 sudo su -c "DEBIAN_FRONTEND=noninteractive apt-get install -y docker.io git ruby ruby-dev make gcc g++"
11 sudo usermod -a -G docker jenkins
12
13 cd /tmp
14 curl -L https://git.arvados.org/arvados-formula.git/blob_plain/refs/heads/main:/Gemfile -o /tmp/Gemfile
15 curl -L https://git.arvados.org/arvados-formula.git/blob_plain/refs/heads/main:/Gemfile.lock -o /tmp/Gemfile.lock
16
17 sudo su -c "gem install bundler"
18 sudo su -c "bundler install"
19 sudo su -c "gem install kitchen-docker"