Skip to content

Commit

Permalink
Update manually-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xarple authored Dec 10, 2024
1 parent 5b4f0e9 commit f182847
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/manually-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
- run: apt -y update
- run: apt -y install curl

- run: curl -LO https://raw.githubusercontent.com/leleliu008/ndk-pkg/master/ndk-pkg
- run: curl -LO https://raw.githubusercontent.com/xarple/ndk-pkg/master/ndk-pkg
- run: chmod +x ndk-pkg

- run: ./ndk-pkg about
Expand All @@ -101,13 +101,13 @@ jobs:
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }} --static

- if: ${{ github.event.inputs.static == 'true' && github.event.inputs.debug-symbols == 'true' }}
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }} --static --enable-strip=no
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }} --static --enable-strip=no --custom-ld=-Wl,--build-id=0x67676767

- if: ${{ github.event.inputs.static == 'false' && github.event.inputs.debug-symbols == 'false' }}
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }}

- if: ${{ github.event.inputs.static == 'false' && github.event.inputs.debug-symbols == 'true' }}
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }} --enable-strip=no
run: ./ndk-pkg install android-${{ github.event.inputs.target-api }}-${{ github.event.inputs.target-abis }}/${{ github.event.inputs.package-name }} --profile=${{ github.event.inputs.build-type }} ${{ github.event.inputs.log-level }} --enable-strip=no --custom-ld=-Wl,--build-id=0x67676767

- name: pack
run: |
Expand Down

0 comments on commit f182847

Please sign in to comment.