Skip to content

Commit 19e2b7b

Browse files
committed
rollback git link . add echo
1 parent da59bd2 commit 19e2b7b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/build-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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\`:

.github/workflows/patch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
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

steps/03-patch.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash -eux
22

3+
echo "patch.sh begin"
4+
35
PATCHES="$PWD/patches"
46
SOURCE="${PDFium_SOURCE_DIR:-pdfium}"
57
OS="${PDFium_TARGET_OS:?}"
@@ -13,12 +15,15 @@ apply_patch() {
1315
}
1416

1517
pushd "${SOURCE}"
18+
echo "patch.sh pushd"
1619

1720
[ "$OS" != "emscripten" ] && apply_patch "$PATCHES/shared_library.patch"
1821
apply_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+
2227
case "$OS" in
2328
android)
2429
apply_patch "$PATCHES/android/build.patch" build

0 commit comments

Comments
 (0)