From 4c76d5618ecf20efb3734db0885632a4d6611cbd Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Tue, 13 Oct 2020 14:59:31 +0200 Subject: [PATCH] Show the diff but do not fail --- .github/workflows/reproducible.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/reproducible.yml b/.github/workflows/reproducible.yml index 67a50ab..060a3dd 100644 --- a/.github/workflows/reproducible.yml +++ b/.github/workflows/reproducible.yml @@ -38,9 +38,9 @@ jobs: name: reproduced-${{ matrix.os }} path: reproducible/reproduced.tar - # - name: Comparing binary sizes - # if: always() - # run: git diff --no-index reproducible/reference_elf2tab_${{ matrix.os }}.txt reproducible/elf2tab.txt - # - name: Comparing cryptographic hashes - # if: always() - # run: git diff --no-index reproducible/reference_binaries_${{ matrix.os }}.sha256sum reproducible/binaries.sha256sum + - name: Comparing binary sizes + if: always() + run: git diff --no-index reproducible/reference_elf2tab_${{ matrix.os }}.txt reproducible/elf2tab.txt || true + - name: Comparing cryptographic hashes + if: always() + run: git diff --no-index reproducible/reference_binaries_${{ matrix.os }}.sha256sum reproducible/binaries.sha256sum || true