Confirmed users
3,104
edits
| Line 40: | Line 40: | ||
|   supervisorctl restart releaserunner |   supervisorctl restart releaserunner | ||
| == Win8-only updates == | == Win8-only updates == | ||
|   # ffxbld@aus3-staging |   # ffxbld@aus3-staging | ||
|   # remove test updates generated by 19.0.1 for 19.0 (20130215130331) |   # remove test updates generated by 19.0.1 for 19.0 (20130215130331) | ||
|   # can be reverted by pushing /opt/aus2/snippets/pushed/Firefox-19.0-build1-test |   # can be reverted by pushing /opt/aus2/snippets/pushed/Firefox-19.0-build1-test | ||
|   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -wholename '*/releasetest' -exec rm -rf '{}' \; |   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -wholename '*/releasetest' -exec rm -rf '{}' \; | ||
|   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -wholename '*/ |   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -wholename '*/betatest' -exec rm -rf '{}' \; | ||
|   # make sure that we don't have any files left before removing buildid directories |   # make sure that we don't have any files left before removing buildid directories | ||
|   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -type f |   find /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ -type f | ||
|   rm -rf /opt/aus2/incoming/3/Firefox/19.0/*/20130215130331/ | |||
|   # Restore previous updates generated by 19.0-test | |||
|   rsync -avP /opt/aus2/snippets/pushed/Firefox-19.0-build1-test/ /opt/aus2/snippets/staging/Firefox-19.0-build1-test/ |   # Restore previous updates generated by 19.0-test, copy it to *-restore to make pushsnip happy when it moves the directory to ../pushed | ||
|   ~/bin/pushsnip Firefox-19.0-build1-test |   rsync -avP /opt/aus2/snippets/pushed/Firefox-19.0-build1-test/ /opt/aus2/snippets/staging/Firefox-19.0-build1-test-restore/ | ||
|   # create win8  |   ~/bin/pushsnip Firefox-19.0-build1-test-restore | ||
|   # create win8 updates | |||
|   rsync -avP /opt/aus2/snippets/pushed/Firefox-19.0.1-build1-test/ /opt/aus2/snippets/staging/Firefox-19.0.1-build1-test.win8/ |   rsync -avP /opt/aus2/snippets/pushed/Firefox-19.0.1-build1-test/ /opt/aus2/snippets/staging/Firefox-19.0.1-build1-test.win8/ | ||
|   rsync -avP /opt/aus2/snippets/staging/Firefox-19.0.1-build1/ /opt/aus2/snippets/staging/Firefox-19.0.1-build1-win8/ |   rsync -avP /opt/aus2/snippets/staging/Firefox-19.0.1-build1/ /opt/aus2/snippets/staging/Firefox-19.0.1-build1-original/ | ||
|  find /opt/aus2/snippets/staging/Firefox-19.0.1-build1-test.win8/ -maxdepth 3 -mindepth 3 -type d -! -name 'WINNT_x86-msvc' -exec rm -rf {} \; | |||
|   /opt/aus2/snippets/staging/Firefox-19.0.1-build1-test/ |   find /opt/aus2/snippets/staging/Firefox-19.0.1-build1-test.win8/ -maxdepth 3 -mindepth 3 -type d -name 'WINNT_x86-msvc' -exec mv {} {}-win8 \; | ||
|   find /opt/aus2/snippets/staging/Firefox-19.0.1-build1/ -maxdepth 3 -mindepth 3 -type d -! -name 'WINNT_x86-msvc' -exec rm -rf {} \; | |||
|  find /opt/aus2/snippets/staging/Firefox-19.0.1-build1/ -maxdepth 3 -mindepth 3 -type d -name 'WINNT_x86-msvc' -exec mv {} {}-win8 \; | |||
|  # Push the test snippets | |||
|  ~/bin/pushsnip Firefox-19.0.1-build1-test.win8 | |||