From 5756b69087a7ddcb3f4343b6f4ff203db6d13506 Mon Sep 17 00:00:00 2001 From: chessai Date: Fri, 24 May 2024 12:46:51 -0500 Subject: [PATCH] add compact to resulting docker image Change-Id: If09bef36acbfe320c07018024271380300b66bab --- .github/workflows/applications.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/applications.yml b/.github/workflows/applications.yml index 4947d8c946..e0c16ae133 100644 --- a/.github/workflows/applications.yml +++ b/.github/workflows/applications.yml @@ -338,7 +338,7 @@ jobs: - name: Build chainweb library run: cabal build --ghc-options=-j2 lib:chainweb - name: Build chainweb applications - run: cabal build -j2 --ghc-options=-j2 exe:chainweb-node test:chainweb-tests exe:cwtool chainweb:bench:bench + run: cabal build -j2 --ghc-options=-j2 exe:chainweb-node exe:compact test:chainweb-tests exe:cwtool chainweb:bench:bench # Checks - name: Check that working directory tree is clean @@ -360,6 +360,7 @@ jobs: run: | mkdir -p artifacts/chainweb cp $(cabal list-bin chainweb-node) artifacts/chainweb + cp $(cabal list-bin compact) artifacts/chainweb cp $(cabal list-bin chainweb-tests) artifacts/chainweb cp $(cabal list-bin cwtool) artifacts/chainweb cp $(cabal list-bin bench) artifacts/chainweb