Skip to content

Commit

Permalink
[ CI ]: Linux - only analyze x86* aapt* executables
Browse files Browse the repository at this point in the history
  • Loading branch information
Martinvlba committed Dec 5, 2023
1 parent 29766fa commit c30abc1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
strategy:
matrix:
file: [ aapt, aapt_64, aapt2, aapt2_64 ]
arch: [amd64, x86]
steps:
- uses: actions/checkout@v4
- name: Verify Executable
run: ${{ env.BINARY_PATH }}/linux/*/${{ matrix.file }} version
run: ${{ env.BINARY_PATH }}/linux/${{ matrix.arch }}/${{ matrix.file }} version
- name: Output Static
run: ldd ${{ env.BINARY_PATH }}/linux/${{ matrix.file }} || true
run: ldd ${{ env.BINARY_PATH }}/linux/${{ matrix.arch }/${{ matrix.file }} || true

analyze-windows-aapt:
runs-on: windows-latest
Expand Down

0 comments on commit c30abc1

Please sign in to comment.