From 94876db1793df5d36e62700f7216f32e7bbf81d6 Mon Sep 17 00:00:00 2001 From: Guillaume Endignoux Date: Mon, 15 Jun 2020 17:25:50 +0200 Subject: [PATCH] Always run git-diff in reproducible workflow, even if the job failed so far. --- .github/workflows/reproducible.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/reproducible.yml b/.github/workflows/reproducible.yml index 16a95b2..4489a93 100644 --- a/.github/workflows/reproducible.yml +++ b/.github/workflows/reproducible.yml @@ -37,6 +37,8 @@ jobs: 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