From 914e3dd082ed08f8ca4788d59490a10f7423e5d2 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 19 Jul 2021 13:39:03 +0930 Subject: [PATCH] Github actions: reduce lnprototest. Setting VALGRIND=1 actually does nothing here; reduce it to two cases, covering gcc and clang, sqlite3 and postgres. Signed-off-by: Rusty Russell --- .github/workflows/ci.yaml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6210381b6..4d1de4840 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -81,15 +81,9 @@ jobs: strategy: fail-fast: true matrix: - compiler: [gcc] - db: [postgres, sqlite3] - valgrind: [0, 1] - network: [regtest] # FIXME: add liquid-regtest include: - - {compiler: clang, db: sqlite3, valgrind: 1} - - {compiler: clang, db: postgres, valgrind: 1} - - {arch: arm32v7, TARGET_HOST: arm-linux-gnueabihf, valgrind: 1, network: regtest} - - {arch: arm64v8, TARGET_HOST: aarch64-linux-gnu, valgrind: 1, network: regtest} + - {compiler: clang, db: sqlite3} + - {compiler: gcc, db: postgres} steps: - name: Checkout uses: actions/checkout@v2.0.0