File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -751,7 +751,7 @@ jobs:
751751 run : |
752752 CURRENT_REV=${{ github.event.inputs.branch }}
753753 PREVIOUS_REV=$(curl --silent "https://api.github.com/repos/${{ github.repository }}/releases/latest" | jq -r ".tag_name")
754- git clone -b "${{ github.event.inputs.branch }}" https://github. com/bbbyyl/pdfium250901 .git
754+ git clone -b "${{ github.event.inputs.branch }}" https://pdfium.googlesource. com/pdfium .git
755755 cat <<END >> RELEASE.md
756756 ### Changes
757757 Commits between \`$PREVIOUS_REV\` and \`$CURRENT_REV\`:
Original file line number Diff line number Diff line change 1818
1919 - name : Checkout PDFium
2020 run : |
21- PDFium_BRANCH=$(git ls-remote --sort version:refname --refs https://github. com/bbbyyl/pdfium250901 .git 'chromium/*' | tail -n 1 | cut -d/ -f3-4)
21+ PDFium_BRANCH=$(git ls-remote --sort version:refname --refs https://pdfium.googlesource. com/pdfium .git 'chromium/*' | tail -n 1 | cut -d/ -f3-4)
2222 echo "Checking out branch $PDFium_BRANCH"
23- gclient config --unmanaged "https://github. com/bbbyyl/pdfium250901 .git"
23+ gclient config --unmanaged "https://pdfium.googlesource. com/pdfium .git"
2424 gclient sync -r "origin/${PDFium_BRANCH}" --no-history --shallow
2525
2626 - name : Upload PDFium artifact
Original file line number Diff line number Diff line change 11#! /bin/bash -eux
22
3+ echo " patch.sh begin"
4+
35PATCHES=" $PWD /patches"
46SOURCE=" ${PDFium_SOURCE_DIR:- pdfium} "
57OS=" ${PDFium_TARGET_OS:? } "
@@ -13,12 +15,15 @@ apply_patch() {
1315}
1416
1517pushd " ${SOURCE} "
18+ echo " patch.sh pushd"
1619
1720[ " $OS " != " emscripten" ] && apply_patch " $PATCHES /shared_library.patch"
1821apply_patch " $PATCHES /public_headers.patch"
1922
2023[ " $ENABLE_V8 " == " true" ] && apply_patch " $PATCHES /v8/pdfium.patch"
2124
25+ echo " patch.sh apply_patch 1"
26+
2227case " $OS " in
2328 android)
2429 apply_patch " $PATCHES /android/build.patch" build
You can’t perform that action at this time.
0 commit comments