From 8f633eed10f2862ff83a851925f2525cbd5a00c2 Mon Sep 17 00:00:00 2001 From: Per Andersson Date: Mon, 24 Jul 2023 00:42:18 +0200 Subject: [PATCH] Add smoke test to PR for deterministic build --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0efb4e66..94840d5d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -49,6 +49,12 @@ jobs: autoreconf -vfi ./configure make all -j4 + - name: Deterministically Build Yaws + run: | + autoreconf -vfi + ./configure --enable-deterministic-build --with-source-date-epoch=$EPOCHSECONDS + make all -j4 + make all -j4 - name: Run test suite run: | make check