Skip to content

Commit d9b6630

Browse files
author
Paulo Coutinho
authored
Merge pull request #37 from paulo-coutinho/fix-android-space
Fix android space problems
2 parents c992191 + a45dbbc commit d9b6630

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/android.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ jobs:
3333
- name: Python requirements
3434
run: pip3 install -r requirements.txt --user
3535

36+
- name: Remove trash
37+
run: |
38+
sudo rm -rf /usr/share/dotnet
39+
sudo rm -rf /opt/ghc
40+
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
41+
3642
- name: Docker build
3743
run: docker build -t pdfium-android -f docker/android/Dockerfile docker/android
3844

modules/ios.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,12 @@ def run_task_patch():
4848
"BUILD.gn",
4949
)
5050
if not f.file_line_has_content(source_file, 242, '#test("pdfium_unittests") {\n'):
51-
f.file_line_comment_range(source_file, 242, 289) # comment all lines of "pdfium_unittests"
52-
f.file_line_comment_range(source_file, 380, 381) # group "pdfium_all", comment all tests
51+
f.file_line_comment_range(
52+
source_file, 242, 289
53+
) # comment all lines of "pdfium_unittests"
54+
f.file_line_comment_range(
55+
source_file, 380, 381
56+
) # group "pdfium_all", comment all tests
5357

5458
f.debug("Applied: Build GN")
5559
else:

0 commit comments

Comments
 (0)