Confirmed users
2,456
edits
m (→Update verify) |
|||
| Line 258: | Line 258: | ||
# Create partial patches and snippets | # Create partial patches and snippets | ||
./patcher2.pl --create-patches --app=firefox --config=../patcher-configs/moz19-branch-major-update-patcher2.cfg 2>&1 | tee ../firefox-create-patches.log | ./patcher2.pl --create-patches --app=firefox --config=../patcher-configs/moz19-branch-major-update-patcher2.cfg 2>&1 | tee ../firefox-create-patches.log | ||
</pre> | |||
======Quick Verify ====== | |||
Check that releasetest = beta = release | |||
<pre> | |||
cd temp/firefox/3.0.19-3.6.6 | |||
# releasetest == beta | |||
find aus2.test -type d -iregex '.*/releasetest$' | perl -nle '$a = $_; $a =~ s/releasetest/beta/; $a =~ s/aus2\.test/aus2.beta/; system("diff -r -u $_ $a");' | |||
find aus2.beta -type d -iregex '.*/beta$' | perl -nle '$a = $_; $a =~ s/beta$/releasetest/; $a =~ s/aus2\.beta/aus2.test/; system("diff -r -u $_ $a");' | |||
# beta == release | |||
find aus2.beta -type d -iregex '.*/beta$' | perl -nle '$a = $_; $a =~ s/aus2\.beta/aus2/; $a =~ s/beta/release/; system("diff -r -u $_ $a");' | |||
find aus2 -type d -iregex '.*/release$' | perl -nle '$a = $_; $a =~ s/release$/beta/; $a =~ s/aus2/aus2.beta/; system("diff -r -u $_ $a");' | |||
</pre> | |||
======Push to AUS====== | |||
<pre> | |||
cd /builds/3.0.19-3.6.6-major-update/snippets/patcher/temp/firefox/3.0.19-3.6.6 | |||
rsync -e 'ssh -i /home/cltbld/.ssh/aus' -av aus2.test/ cltbld@aus2-staging.mozilla.org:/opt/aus2/snippets/staging/20100626-Firefox-3.0.19-3.6.6-MU-test | |||
rsync -e 'ssh -i /home/cltbld/.ssh/aus' -av aus2.beta/ cltbld@aus2-staging.mozilla.org:/opt/aus2/snippets/staging/20100626-Firefox-3.0.19-3.6.6-MU-beta | |||
rsync -e 'ssh -i /home/cltbld/.ssh/aus' -av aus2/ cltbld@aus2-staging.mozilla.org:/opt/aus2/snippets/staging/20100626-Firefox-3.0.19-3.6.6-MU | |||
</pre> | |||
======Enable test snippets====== | |||
<pre> | |||
~/bin/backupsnip 20100626-Firefox-3.0.19-3.6.6-MU-test | |||
~/bin/pushsnip 20100626-Firefox-3.0.19-3.6.6-MU-test | |||
</pre> | </pre> | ||