Confirmed users
1,377
edits
Line 145: | Line 145: | ||
I generated a typescript log of this process and it is on the slave used with a path of /home/cltbld/4.0b10-snippet-manipulation | I generated a typescript log of this process and it is on the slave used with a path of /home/cltbld/4.0b10-snippet-manipulation | ||
I fixed the ja-JP snippets with | |||
<pre> | |||
# cltbld@mv-moz2-linux-ix-slave08 | |||
cd /builds/slave/4.0b10-updates/build/temp/firefox/ | |||
mkdir -p 4.0b9-4.0b10.ja-JP-mac/aus2.test/ | |||
rsync -a 4.0b9-4.0b10/aus2.test/ 4.0b9-4.0b10.ja-JP-mac/aus2.test/ | |||
cd 4.0b9-4.0b10.ja-JP-mac/aus2.test/Firefox | |||
for v in {4..9}; do | |||
for abi in Darwin_x86_64-gcc3 Darwin_x86_64-gcc3-u-i386-x86_64 Darwin_x86-gcc3-u-i386-x86_64; do | |||
for d in `ls -d -1 ./4.0b$v/$abi/*`; do | |||
mkdir -v $d/ja-JP-mac | |||
done | |||
done | |||
done | |||
for d in `find . -type d -name ja-JP-mac`; do | |||
mkdir $d/releasetest $d/betatest | |||
cat > $d/releasetest/complete.txt << EOF | |||
version=1 | |||
type=complete | |||
url=http://download.mozilla.org/?product=firefox-4.0b10-complete&os=osx&lang=ja-JP-mac | |||
hashFunction=SHA512 | |||
hashValue=ff033832196a5d92a3a56986fda22148b7aa938bdb09df155a8281f70dccd97feb2f77c11db335daca19f89103305e011c22a52e960544284688ba524693ac07 | |||
size=27683963 | |||
build=20110121161344 | |||
appv=4.0 Beta 10 | |||
extv=4.0b10 | |||
detailsUrl=http://www.mozilla.com/ja-JP-mac/firefox/4.0b10/releasenotes/ | |||
EOF | |||
sed -e \ | |||
's!^url=.*!url=http://stage-old.mozilla.org/pub/mozilla.org/firefox/nightly/4.0b10-candidates/build1/update/mac/ja-JP-mac/firefox-4.0b10.complete.mar!' \ | |||
$d/releasetest/complete.txt > $d/betatest/complete.txt | |||
done | |||
cd ../.. | |||
rsync -a aus2.test/ aus2/ | |||
cd aus2/Firefox | |||
find . -depth -name 'betatest' -type d -exec rm -rf {} \; | |||
find . -mindepth 4 -maxdepth 4 -type d -exec mv {}/{releasetest,beta} \; | |||
cd ../.. | |||
rsync -av -e "ssh -oIdentityFile=~/.ssh/cltbld_dsa" \ | |||
aus2.test/ \ | |||
cltbld@aus2-staging.mozilla.org:/opt/aus2/snippets/staging/20110122-Firefox-4.0b10-test/ | |||
rsync -av -e "ssh -oIdentityFile=~/.ssh/cltbld_dsa" \ | |||
aus2/ \ | |||
cltbld@aus2-staging.mozilla.org:/opt/aus2/snippets/staging/20110122-Firefox-4.0b10/ | |||
ssh -i ~/.ssh/cltbld_dsa cltbld@aus2-staging.mozilla.org ~/bin/pushsnip 20110122-Firefox-4.0b10-test | |||
</pre> | |||
== Update Bouncer == | == Update Bouncer == |