From b320337a60189368c8d5dbbe25d2304a1d6334a1 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Wed, 26 Jan 2022 11:59:24 +0100 Subject: [PATCH] gci: Limit the RUST=1 config to test rust-related functionality No point in retesting yet again, just test what wasn't tested elsewhere. --- .github/workflows/ci.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d388208d8..69d95b6ba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -347,6 +347,8 @@ jobs: DEVELOPER: 1 RUST: 1 VALGRIND: 0 + # Run only the rust tests, others are not impacted. + TEST_CMD: "make -j 8 && pytest -vvv tests/test_cln_rs.py" steps: - name: Checkout uses: actions/checkout@v2.0.0