aboutsummaryrefslogtreecommitdiff
blob: 2f6ed30ef793649de2bf6964f4db90ce7687d7bf (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# This is the config file for the catalyst-auto script. It should be pretty
# self-explanatory.

UPLOAD_USER=amd64
UPLOAD_KEY=/root/.ssh/id_rsa
host=$(hostname)

ARCH="amd64"
TYPE="auto"
source /etc/catalyst/release/build.env

SPECS_DIR=${REPO_DIR}/releases/specs/amd64

SETS="
	multilib minimal_multilib
	nomultilib minimal_nomultilib
	x32
	systemd
	hardened_multilib minimal_hardened_multilib
	hardened_nomultilib minimal_hardened_nomultilib
	hardened_multilib_selinux hardened_nomultilib_selinux
"

SET_multilib_SPECS="stage1.spec stage2.spec stage3.spec"
SET_multilib_OPTIONAL_SPECS="installcd-stage1.spec installcd-stage2-minimal.spec"
#SET_minimal_multilib_OPTIONAL_SPECS="stage4-minimal.spec"
SET_nomultilib_SPECS="stage1-nomultilib.spec stage2-nomultilib.spec stage3-nomultilib.spec"
#SET_minimal_nomultilib_OPTIONAL_SPECS="stage4-nomultilib-minimal.spec"

SET_systemd_SPECS="stage1-systemd.spec stage2-systemd.spec stage3-systemd.spec"

SET_x32_SPECS="stage1-x32.spec stage2-x32.spec stage3-x32.spec"

SET_hardened_multilib_SPECS="hardened/stage1.spec hardened/stage2.spec hardened/stage3.spec"
SET_hardened_multilib_OPTIONAL_SPECS="hardened/admincd-stage1.spec hardened/admincd-stage2.spec"
#SET_minimal_hardened_multilib_OPTIONAL_SPECS="hardened/stage4-minimal.spec"
SET_hardened_nomultilib_SPECS="hardened/stage1-nomultilib.spec hardened/stage2-nomultilib.spec hardened/stage3-nomultilib.spec"
#SET_minimal_hardened_nomultilib_OPTIONAL_SPECS="hardened/stage4-nomultilib-minimal.spec"

SET_hardened_multilib_selinux_SPECS="hardened/stage1-selinux.spec hardened/stage2-selinux.spec hardened/stage3-selinux.spec"
#SET_hardened_multilib_selinux_OPTIONAL_SPECS="hardened/admincd-stage1-selinux.spec hardened/admincd-stage2-selinux.spec"
SET_hardened_nomultilib_selinux_SPECS="hardened/stage1-selinux-nomultilib.spec hardened/stage2-selinux-nomultilib.spec hardened/stage3-selinux-nomultilib.spec"

KCONFIG_DIR=${REPO_DIR}/releases/kconfig/amd64

EXTENSIONS="@(.tar.xz|.tar.bz2|.tar.gz|.tar|.sfs)"

update_symlinks() {
	# Symlink the latest stages3 to build from
	for d in ${BUILD_SRCDIR_BASE}/{default,hardened} ; do
		pushd "${d}" >/dev/null || exit
		shopt -s extglob
		for f in $(ls stage3*${EXTENSIONS} | grep -v latest | give_latest_from_dates ) ; do
			# 20yymmddThhmmssZ
			# 20yymmddhhmmss
			# 20yymmdd
			# 20yy.n
			of=$(perl -p \
				-e 's/20\d{6}T\d{6}Z/latest/g;' \
				-e 's/20\d{6}\d{6}/latest/g;' \
				-e 's/20\d{6}/latest/g;' \
				-e 's/20\d{2}\.\d{2}/latest/g;' \
				<<<"$f")
			ln -svf "$f" "$of"
		done
		popd >/dev/null || exit
	done
}

post_build() {
	local set=$1 spec=$2

	pushd "${BUILD_SRCDIR_BASE}"/default >/dev/null || exit
	UPLOAD_DEST=${BUILD_DESTDIR_BASE}
	case ${spec} in
	stage3.spec)
		upload stage3-amd64-${TIMESTAMP}.tar.xz*
		;;
	installcd-stage2-minimal.spec)
		upload install-amd64-minimal-${TIMESTAMP}.iso*
		;;
	stage4-minimal.spec)
		upload stage4-amd64-minimal-${TIMESTAMP}.tar.xz*
		;;
	stage3-nomultilib.spec)
		upload stage3-amd64-nomultilib-${TIMESTAMP}.tar.xz*
		;;
	stage4-nomultilib-minimal.spec)
		upload stage4-amd64-minimal-nomultilib-${TIMESTAMP}.tar.xz*
		;;
	stage3-systemd.spec)
		upload stage3-amd64-systemd-${TIMESTAMP}.tar.xz*
		;;
	stage3-x32.spec)
		upload stage3-x32-${TIMESTAMP}.tar.xz*
		;;
	esac
	popd >/dev/null || exit

	pushd "${BUILD_SRCDIR_BASE}"/hardened >/dev/null || exit
	UPLOAD_DEST=${BUILD_DESTDIR_BASE}/hardened
	case ${spec} in
	hardened/stage3.spec)
		upload stage3-amd64-hardened-${TIMESTAMP}.tar.xz*
		;;
	hardened/admincd-stage2.spec)
		upload admincd-amd64-${TIMESTAMP}.iso*
		;;
	hardened/stage4-minimal.spec)
		upload stage4-amd64-hardened+minimal-${TIMESTAMP}.tar.xz*
		;;
	hardened/stage3-nomultilib.spec)
		upload stage3-amd64-hardened+nomultilib-${TIMESTAMP}.tar.xz*
		;;
	hardened/stage4-nomultilib-minimal.spec)
		upload stage4-amd64-hardened+minimal-nomultilib-${TIMESTAMP}.tar.xz*
		;;
	hardened/stage3-selinux.spec)
		upload stage3-amd64-hardened-selinux-${TIMESTAMP}.tar.xz*
		;;
	hardened/admincd-stage2-selinux.spec)
		upload admincd-amd64-${TIMESTAMP}.iso*
		;;
	hardened/stage3-selinux-nomultilib.spec)
		upload stage3-amd64-hardened-selinux+nomultilib-${TIMESTAMP}.tar.xz*
		;;
	esac
	popd >/dev/null || exit
}

# vim:ft=sh: