6 echo update.sh
"<revision to update to>"
10 if [ ! -f "$GECKO_PATH/mach" ]; then
11 echo "GECKO_PATH ($GECKO_PATH) does not appear to be a mozilla-central checkout"
15 if [ -v TASK_ID
]; then
16 # if we are running in taskcluster, then use the pre-obtained pdfjs checkout
17 export ROOT
=/builds
/worker
/pdf.js
18 elif [ -v PDFJS_CHECKOUT
]; then
19 export ROOT
=$PDFJS_CHECKOUT
21 PDFJS_TMPDIR
="/tmp/pdfjs-$(date +%s)"
22 git clone https
://github.com
/mozilla
/pdf.js
"$PDFJS_TMPDIR"
23 export ROOT
=$PDFJS_TMPDIR
30 npm
install --legacy-peer-deps --ignore-scripts
37 mkdir
-p "$ROOT/build/mozcentral/browser/extensions/pdfjs/"
39 cp "$ROOT/build/mozcentral/browser/extensions/pdfjs/content/LICENSE" "$GECKO_PATH/toolkit/components/pdfjs/"
40 cp "$ROOT/build/mozcentral/browser/extensions/pdfjs/PdfJsDefaultPrefs.js" "$GECKO_PATH/toolkit/components/pdfjs/PdfJsDefaultPrefs.js"
41 rsync
-a -v --delete "$ROOT/build/mozcentral/browser/extensions/pdfjs/content/build/" "$GECKO_PATH/toolkit/components/pdfjs/content/build/"
42 rsync
-a -v --delete "$ROOT/build/mozcentral/browser/extensions/pdfjs/content/web/" "$GECKO_PATH/toolkit/components/pdfjs/content/web/"
44 ls -R "$ROOT/build/mozcentral/browser/"
45 cp "$ROOT"/build
/mozcentral
/browser
/locales
/en-US
/pdfviewer
/*.ftl
"$GECKO_PATH/toolkit/locales/en-US/toolkit/pdfviewer/" || true
47 # For now we don't update the revision because we need to reduce the number of files to test
48 # (cf https://bugzilla.mozilla.org/show_bug.cgi?id=1940144 for re-enabling).
49 # Update the revision in the toolchains.yml file for the Talos tests.
50 # sed -i -z "s/\(mozilla-pdf\.js.*revision: \)[0-9a-f]*/\1$1/g" "$GECKO_PATH/taskcluster/kinds/fetch/toolchains.yml"
52 if [ -v PDFJS_TMPDIR
]; then
53 rm -rf "$PDFJS_TMPDIR"