Skip to content

Commit

Permalink
Split the build process into smaller fragments
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwibrowser authored Aug 16, 2023
1 parent e891b6f commit 86afd15
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,10 +211,27 @@ jobs:
if: ${{ github.repository_owner == 'kiwibrowser' }}
run: rclone copy --fast-list --transfers=32 $HOME/cache/ sync:kiwibrowser-ccache-${{ matrix.platform }}/

- name: Compiling source-code (content/public/common)
run: ninja -C ./secondary_disk/out/android_${{ matrix.platform }} content/public/common

- name: Uploading binary objects to cache
if: ${{ github.repository_owner == 'kiwibrowser' }}
run: rclone copy --fast-list --transfers=32 $HOME/cache/ sync:kiwibrowser-ccache-${{ matrix.platform }}/

- name: Compiling source-code (content/public/browser)
run: ninja -C ./secondary_disk/out/android_${{ matrix.platform }} content/public/browser

- name: Uploading binary objects to cache
if: ${{ github.repository_owner == 'kiwibrowser' }}
run: rclone copy --fast-list --transfers=32 $HOME/cache/ sync:kiwibrowser-ccache-${{ matrix.platform }}/

- name: Compiling source-code (components/guest_view/common)
run: ninja -C ./secondary_disk/out/android_${{ matrix.platform }} components/guest_view/common

- name: Uploading binary objects to cache
if: ${{ github.repository_owner == 'kiwibrowser' }}
run: rclone copy --fast-list --transfers=32 $HOME/cache/ sync:kiwibrowser-ccache-${{ matrix.platform }}/

- name: Compiling source-code (components/guest_view/renderer)
run: ninja -C ./secondary_disk/out/android_${{ matrix.platform }} components/guest_view/renderer

Expand Down

0 comments on commit 86afd15

Please sign in to comment.