aboutsummaryrefslogtreecommitdiff
blob: 1560c2f7028befe20cf4c288b4c555f52d5495d3 (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
# This is the config file for the catalyst-auto script. It should be pretty
# self-explanatory.

UPLOAD_USER=x86
UPLOAD_KEY=/root/.ssh/id_ed25519
host=$(hostname)

EMAIL_SUBJECT_PREPEND="[x86-auto]"

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

SETS="
	i486_openrc_23
	i486_systemd_23
	i686_openrc_23
	i686_systemd_23
	i686_ssemath_openrc_23
	i686_ssemath_systemd_23
	hardened_openrc_23
	musl_23
"

SET_i486_openrc_23_SPECS="i486/stage1-openrc-23.spec i486/stage3-openrc-23.spec"
SET_i486_openrc_23_OPTIONAL_SPECS="i486/installcd-stage1-openrc.spec i486/installcd-stage2-minimal-openrc.spec"

SET_i486_systemd_23_SPECS="i486/stage1-systemd-23.spec i486/stage3-systemd-23.spec"

SET_i686_openrc_23_SPECS="i686/stage1-openrc-23.spec i686/stage3-openrc-23.spec"

SET_i686_systemd_23_SPECS="i686/stage1-systemd-23.spec i686/stage3-systemd-23.spec"

SET_i686_ssemath_openrc_23_SPECS="i686-ssemath/stage1-openrc-23.spec i686-ssemath/stage3-openrc-23.spec"

SET_i686_ssemath_systemd_23_SPECS="i686-ssemath/stage1-systemd-23.spec i686-ssemath/stage3-systemd-23.spec"

SET_hardened_openrc_23_SPECS="hardened/stage1-openrc-23.spec hardened/stage3-openrc-23.spec"
SET_hardened_openrc_23_OPTIONAL_SPECS="hardened/admincd-stage1-openrc.spec hardened/admincd-stage2-openrc.spec"

SET_musl_23_SPECS="musl/stage1-23.spec musl/stage3-23.spec"


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

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

update_symlinks() {
	# Symlink the latest stages3 to build from
	for d in ${BUILD_SRCDIR_BASE}/builds/* ; do
		mkdir -p "${d}"
		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 -sf "$f" "$of"
		done
		popd >/dev/null || exit
	done
}

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

	pushd ${BUILD_SRCDIR_BASE}/builds/23.0-default >/dev/null || exit
	case ${spec} in
	i486/stage3-openrc-23.spec)
		upload stage3-i486-openrc-${TIMESTAMP}.tar.xz*
		;;
	i486/stage3-systemd-23.spec)
		upload stage3-i486-systemd-${TIMESTAMP}.tar.xz*
		upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-i486" x86/23.0/i486
		;;
	i486/installcd-stage2-minimal-openrc.spec)
		upload install-x86-minimal-${TIMESTAMP}.iso*
		;;
	i686/stage3-openrc-23.spec)
		upload stage3-i686-openrc-${TIMESTAMP}.tar.xz*
		;;
	i686/stage3-systemd-23.spec)
		upload stage3-i686-systemd-${TIMESTAMP}.tar.xz*
		upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-i686" x86/23.0/i686
		;;
	i686-ssemath/stage3-openrc-23.spec)
		upload stage3-i686-ssemath-openrc-${TIMESTAMP}.tar.xz*
		;;
	i686-ssemath/stage3-systemd-23.spec)
		upload stage3-i686-ssemath-systemd-${TIMESTAMP}.tar.xz*
		upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-default/stage3-i686-ssemath" x86/23.0/i686-ssemath
		;;
	esac
	popd >/dev/null || exit

	pushd ${BUILD_SRCDIR_BASE}/builds/23.0-hardened >/dev/null || exit
	case ${spec} in
	hardened/stage3-openrc-23.spec)
		upload stage3-i686-hardened-openrc-${TIMESTAMP}.tar.xz*
		upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-hardened/stage3-i686" x86/23.0/i686_hardened
		;;
	hardened/admincd-stage2-openrc.spec)
		upload admincd-x86-${TIMESTAMP}.iso*
		;;
	esac
	popd >/dev/null || exit

	pushd ${BUILD_SRCDIR_BASE}/builds/23.0-musl >/dev/null || exit
	case ${spec} in
	musl/stage3-23.spec)
		upload stage3-i686-musl-${TIMESTAMP}.tar.xz*
		upsync_binpackages "${BUILD_SRCDIR_BASE}/packages/23.0-musl/stage3-i686" x86/23.0/i686_musl
		;;
	esac
	popd >/dev/null || exit
}

# vim:ft=sh: