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

UPLOAD_USER=arm

host=$(hostname)

SPECS_DIR=${REPO_DIR}/releases/specs-qemu/arm

EMAIL_SUBJECT_PREPEND="[arm-qemu-auto]"

SETS="
	armv4tl
	armv5tel
	armv6j_hf
	armv6j_sf
	armv7a_hf
	armv7a_sf
	armv4tl_systemd
	armv5tel_systemd
	armv6j_hf_systemd
	armv6j_sf_systemd
	armv7a_hf_systemd
	armv7a_sf_systemd
"

SET_armv4tl_SPECS="armv4tl/stage1.spec armv4tl/stage3.spec"
SET_armv4tl_systemd_SPECS="armv4tl/stage1-systemd.spec armv4tl/stage3-systemd.spec"

SET_armv5tel_SPECS="armv5tel/stage1.spec armv5tel/stage3.spec"
SET_armv5tel_systemd_SPECS="armv5tel/stage1-systemd.spec armv5tel/stage3-systemd.spec"

SET_armv6j_hf_SPECS="armv6j/stage1-hardfloat.spec armv6j/stage3-hardfloat.spec"
SET_armv6j_sf_SPECS="armv6j/stage1.spec armv6j/stage3.spec"
SET_armv6j_hf_systemd_SPECS="armv6j/stage1-hardfloat-systemd.spec armv6j/stage3-hardfloat-systemd.spec"
SET_armv6j_sf_systemd_SPECS="armv6j/stage1-systemd.spec armv6j/stage3-systemd.spec"

SET_armv7a_hf_SPECS="armv7a/stage1-hardfloat.spec armv7a/stage3-hardfloat.spec"
SET_armv7a_sf_SPECS="armv7a/stage1.spec armv7a/stage3.spec"
SET_armv7a_hf_systemd_SPECS="armv7a/stage1-hardfloat-systemd.spec armv7a/stage3-hardfloat-systemd.spec"
SET_armv7a_sf_systemd_SPECS="armv7a/stage1-systemd.spec armv7a/stage3-systemd.spec"


update_symlinks() {
	# Symlink the latest stages3 to build from
	local d f
	for d in "${BUILD_SRCDIR_BASE}/builds/default" ; do
		pushd "${d}" >/dev/null
		for f in $(ls stage3*xz | grep -v latest | give_latest_from_dates) ; do
			local of=$(echo "${f}" | convert_filename)
			ln -sf "${f}" "${of}"
		done
		popd >/dev/null
	done
}

upload() {
    if [[ ${nonetwork} == 0 ]]; then
	echo Uploading "$@"
	rsync -e 'ssh -i /root/.ssh/id_rsa -o UserKnownHostsFile=/dev/null -o VerifyHostKeyDNS=yes -o StrictHostKeyChecking=no' "$@" ${UPLOAD_USER}@releng-incoming.gentoo.org:
    else
	echo Would now upload "$@"
	ls -l $@
    fi
}

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

	pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null

	case ${spec} in
	armv4tl/stage3.spec)
		upload stage3-armv4tl-${TIMESTAMP}*.xz*
		;;
	armv4tl/stage3-systemd.spec)
		upload stage3-armv4tl-systemd-${TIMESTAMP}*.xz*
		;;
	armv5tel/stage3.spec)
		upload stage3-armv5tel-${TIMESTAMP}*.xz*
		;;
	armv5tel/stage3-systemd.spec)
		upload stage3-armv5tel-systemd-${TIMESTAMP}*.xz*
		;;
	armv6j/stage3.spec)
		upload stage3-armv6j-${TIMESTAMP}*.xz*
		;;
	armv6j/stage3-systemd.spec)
		upload stage3-armv6j-systemd-${TIMESTAMP}*.xz*
		;;
	armv6j/stage3-hardfloat.spec)
		upload stage3-armv6j-hardfloat-${TIMESTAMP}*.xz*
		;;
	armv6j/stage3-hardfloat-systemd.spec)
		upload stage3-armv6j-hardfloat-systemd-${TIMESTAMP}*.xz*
		;;
	armv7a/stage3.spec)
		upload stage3-armv7a-${TIMESTAMP}*.xz*
		;;
	armv7a/stage3-systemd.spec)
		upload stage3-armv7a-systemd-${TIMESTAMP}*.xz*
		;;
	armv7a/stage3-hardfloat.spec)
		upload stage3-armv7a-hardfloat-${TIMESTAMP}*.xz*
		;;
	armv7a/stage3-hardfloat-systemd.spec)
		upload stage3-armv7a-hardfloat-systemd-${TIMESTAMP}*.xz*
		;;
	esac

	popd >/dev/null
}