Skip to content

Commit

Permalink
[ CI ]: Linux workflow testing [2/*]
Browse files Browse the repository at this point in the history
  • Loading branch information
Martinvlba committed Dec 5, 2023
1 parent cc1060b commit 93bce11
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
file: [ aapt, aapt_64, aapt2, aapt2_64 ]
arch: [x86, amd64, x86, amd64]
x86: [ aapt, aapt2 ]
amd64: [aapt_64, aapt2_64]
steps:
- uses: actions/checkout@v4
- name: Verify Executable
run: ${{ env.BINARY_PATH }}/linux/${{ matrix.arch }}/${{ matrix.file }} version
- name: Output Static
run: ldd ${{ env.BINARY_PATH }}/linux/${{ matrix.arch }}/${{ matrix.file }} || true
- name: Verify Executable ( x86 )
run: ${{ env.BINARY_PATH }}/linux/x86/${{ matrix.x86 }} version
- name: Output Static ( x86 )
run: ldd ${{ env.BINARY_PATH }}/linux/x86/${{ matrix.file }} || true
- name: Verify Executable ( amd64 )
run: ${{ env.BINARY_PATH }}/linux/amd64/${{ matrix.amd64 }} version
- name: Output Static ( amd64 )
run: ldd ${{ env.BINARY_PATH }}/linux/amd64/${{ matrix.amd64 }} || true

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

0 comments on commit 93bce11

Please sign in to comment.