Skip to content

Commit

Permalink
Verify using diffoscope
Browse files Browse the repository at this point in the history
  • Loading branch information
albin-mullvad committed Jun 28, 2024
1 parent e3adea0 commit ca8d2a4
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions .github/workflows/android-app-reproducible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,29 @@ jobs:
name: Verify builds
needs: [build]
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
include:
- type: nativeful
path: dist
- type: nativeless
path: dist
steps:
- name: Install diffoscope
run: apt-get install diffoscope

- uses: actions/download-artifact@v4
with:
pattern: apk-*
pattern: apk-${{ matrix.type }}-*
path: apks
merge-multiple: true

- name: Fix git dir
run: ls -al apks
run: find apks

- name: print checksums
run: find . -name "*.apk" | xargs sha256sum
run: find apks -name "*.apk" | xargs sha256sum

- name: Run diffoscope
run: diffoscope apks/*

0 comments on commit ca8d2a4

Please sign in to comment.