File: .travis.sh

package info (click to toggle)
pgloader 3.6.10-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,060 kB
  • sloc: sql: 32,321; lisp: 14,793; makefile: 435; sh: 85; python: 26
file content (72 lines) | stat: -rwxr-xr-x 2,258 bytes parent folder | download | duplicates (3)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/bash

set -eu

lisp_install() {
	case "$LISP" in
		ccl)
			ccl_checksum='08e885e8c2bb6e4abd42b8e8e2b60f257c6929eb34b8ec87ca1ecf848fac6d70'
			ccl_version='1.11'

			remote_file "/tmp/ccl-${ccl_version}.tgz" "https://github.com/Clozure/ccl/releases/download/v${ccl_version}/ccl-${ccl_version}-linuxx86.tar.gz" "$ccl_checksum"
			tar --file  "/tmp/ccl-${ccl_version}.tgz" --extract --exclude='.svn' --directory '/tmp'
			sudo mv --no-target-directory '/tmp/ccl'    '/usr/local/src/ccl'
			sudo ln --no-dereference --force --symbolic "/usr/local/src/ccl/scripts/ccl64" '/usr/local/bin/ccl'
			;;

		sbcl)
			sbcl_checksum='22ccd9409b2ea16d4be69235c5ad5fde833452955cb24483815312d3b1d7401c'
			sbcl_version='1.5.2'

			remote_file "/tmp/sbcl-${sbcl_version}.tgz" "http://prdownloads.sourceforge.net/sbcl/sbcl-${sbcl_version}-x86-64-linux-binary.tar.bz2" "$sbcl_checksum"
			tar --file  "/tmp/sbcl-${sbcl_version}.tgz" --extract --directory '/tmp'
			( cd "/tmp/sbcl-${sbcl_version}-x86-64-linux" && sudo ./install.sh )
			;;

		*)
			echo "Unrecognized Lisp: '$LISP'"
			exit 1
			;;
	esac
}

pgdg_repositories() {
	local sourcelist='sources.list.d/pgdg.list'

	sudo tee "/etc/apt/$sourcelist" <<-repositories
		deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main
		deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg-testing main 10
	repositories

	sudo apt-key adv --keyserver 'hkp://ha.pool.sks-keyservers.net' --recv-keys 'ACCC4CF8'
	sudo apt-get -o Dir::Etc::sourcelist="$sourcelist" -o Dir::Etc::sourceparts='-' -o APT::Get::List-Cleanup='0' update
}

postgresql_install() {
	if [ -z "${PGVERSION:-}" ]; then
		echo 'PGVERSION environment variable not set.';
		exit 1
	fi

	xargs sudo apt-get -y install <<-packages
		postgresql-${PGVERSION}
		postgresql-${PGVERSION}-ip4r
	packages

	sudo tee /etc/postgresql/${PGVERSION}/main/pg_hba.conf > /dev/null <<-config
		local  all  all                trust
		host   all  all  127.0.0.1/32  trust
	config

	sudo service postgresql restart
}

remote_file() {
	local target="$1" origin="$2" sum="$3"
	local check="shasum --algorithm $(( 4 * ${#sum} )) --check"
	local filesum="$sum  $target"

	curl --location --output "$target" "$origin" && $check <<< "$filesum"
}

$1