From d1ab6090f16656a6092e1b628ac248718e2a7278 Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Fri, 9 Oct 2020 12:16:02 +0200 Subject: [PATCH 1/2] Disable reproducible workflow --- .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 66df550..67a50ab 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 + # - name: Comparing cryptographic hashes + # if: always() + # run: git diff --no-index reproducible/reference_binaries_${{ matrix.os }}.sha256sum reproducible/binaries.sha256sum From 4c76d5618ecf20efb3734db0885632a4d6611cbd Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Tue, 13 Oct 2020 14:59:31 +0200 Subject: [PATCH 2/2] 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