blob: 4f681ac5384f849d82297e055926ba309260e0d5 (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
#!/bin/bash
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2020 Samsung Electronics
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
set -o nounset
set -o pipefail
set -o xtrace
# shellcheck disable=SC1091
source /etc/os-release || source /usr/lib/os-release
pkgs=""
if ! command -v shellcheck; then
case ${ID,,} in
*suse*|rhel|centos|fedora)
pkgs="ShellCheck"
;;
ubuntu|debian)
pkgs="shellcheck"
;;
esac
fi
if ! command -v pip; then
pkgs+=" python-pip"
fi
if [ -n "$pkgs" ]; then
case ${ID,,} in
*suse*)
sudo zypper install --gpg-auto-import-keys refresh
sudo -H -E zypper install -y --no-recommends "$pkgs"
;;
ubuntu|debian)
sudo apt-get update
sudo -H -E apt-get -y --no-install-recommends install "$pkgs"
;;
rhel|centos|fedora)
PKG_MANAGER=$(command -v dnf || command -v yum)
if ! sudo "$PKG_MANAGER" repolist | grep "epel/"; then
sudo -H -E "$PKG_MANAGER" -q -y install epel-release
fi
sudo "$PKG_MANAGER" updateinfo --assumeyes
sudo -H -E "${PKG_MANAGER}" -y install "$pkgs"
;;
esac
fi
tox -e lint
bash -c 'shopt -s globstar; shellcheck **/*.sh'
|