Bug 1942239 - Add option to explicitly enable incremental origin initialization in...
[gecko.git] / toolkit / components / pdfjs / update.sh
blobeb22c5bf00ecf1b68e57e70d5b1e80eac92b4e7f
1 #!/bin/bash
3 set +vex
5 if [ $# -lt 1 ]; then
6 echo update.sh "<revision to update to>"
7 exit 1
8 fi
10 if [ ! -f "$GECKO_PATH/mach" ]; then
11 echo "GECKO_PATH ($GECKO_PATH) does not appear to be a mozilla-central checkout"
12 exit 1
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
20 else
21 PDFJS_TMPDIR="/tmp/pdfjs-$(date +%s)"
22 git clone https://github.com/mozilla/pdf.js "$PDFJS_TMPDIR"
23 export ROOT=$PDFJS_TMPDIR
26 pushd "$ROOT" || exit
27 git fetch origin
28 git checkout "$1"
30 npm install --legacy-peer-deps --ignore-scripts
32 gulp mozcentral
34 popd || exit
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"