⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nightly-sample.sh

📁 ipsec vpn
💻 SH
字号:
#!/bin/shUSER=build export USER. /etc/profile# make sure that $HOME/bin/touch is before /bin/touch.PATH=$HOME/bin:$PATH export PATH# source it so that we get the settings for $TODAYsource $HOME/freeswan-regress-env.shregress_branch() {	env	starttime=`date`	source $HOME/bin/regress-nightly.sh	regressstat=$?	endtime=`date`	STATUSDIR=$REGRESSTREE/$BRANCH/$TODAY	echo "<LI> <A HREF=\"$TODAY/testresults.html\">$TODAY</A></LI>" >>$REGRESSTREE/$BRANCH/index.html	mkdir -p $STATUSDIR	cp $BUILDSPOOL/stdout.txt $STATUSDIR	cp $BUILDSPOOL/stderr.txt $STATUSDIR	(cd $REGRESSTREE/$BRANCH && rm -f lastgood && ln -s $TODAY lastgood)	(	echo "From: Nightly Build process <build@abigail.freeswan.org>"	echo "To: $NIGHTLY_WATCHERS"	echo "Subject: FreeS/WAN build for $BRANCH $TODAY"	echo	echo "Please see "	echo "http://private.abigail.freeswan.org/freeswan/$BRANCH/$TODAY/testresults.html "	echo "or"	echo "http://bugs.freeswan.org:81/regress/$BRANCH/$TODAY/testresults.html "	echo "for more details."        echo        echo "Tests started at $starttime"        echo "        ended at $endtime"        echo	if [ $regressstat -ne 0 ]	then		echo;		echo "The build failed: $regressstat"		echo;		exit 1	fi		echo	links -dump $STATUSDIR/testresults.html	echo "Output from failing tests (up to $FAILLINES lines)"	cd $STATUSDIR	if [ -f faillist.txt ]	then		cat faillist.txt | while read testname		do			for diff in $testname/OUTPUT/*.diff			do				echo 				echo "===== $diff:"				cat $diff			done		done | sed "${FAILLINES}q"	fi	) | teammail.sh	$HOME/bin/regresschart.sh $REGRESSTREE/$BRANCH }( regress_branch )#BRANCH=PRE1_97 export BRANCH##( regress_branch )

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -