Skip to content

Commit

Permalink
Update gki-kernel.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWildJames authored Mar 3, 2025
1 parent 8bd69ef commit d11c7ae
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/gki-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,20 @@ jobs:
$REPO --version
$REPO --trace sync -c -j$(nproc --all) --no-tags --fail-fast
- name: Copy file
run: |
cp -r $CONFIG source-clean-$CONFIG
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: source-clean-${{ env.CONFIG }}
path: source-clean-${{ env.CONFIG }}

- name: Remove file
run: |
rm -rf source-clean-$CONFIG
- name: Determine the branch for KernelSU
run: |
if [[ "${{ inputs.kernelsu_branch }}" == "Stable" ]]; then
Expand Down Expand Up @@ -362,6 +376,20 @@ jobs:
#tools/bazel build --config=fast --lto=${{ inputs.lto_type }} //common:kernel_aarch64_dist
fi
- name: Copy file
run: |
cp -r $CONFIG source-patched-$CONFIG
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: source-patched-${{ env.CONFIG }}
path: source-patched-${{ env.CONFIG }}

- name: Remove file
run: |
rm -rf source-patched-$CONFIG
- name: Build with retry
uses: nick-fields/retry@v3
with:
Expand Down

0 comments on commit d11c7ae

Please sign in to comment.