From 25dacebf7fd200ef7ba4eb503247f6b205c2ad19 Mon Sep 17 00:00:00 2001 From: Jaremy Creechley Date: Wed, 12 Jul 2023 18:34:16 -0700 Subject: [PATCH] check dirs --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f46811..2a3133e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -175,6 +175,8 @@ jobs: - name: Setup Deps run: | nimble install -d + find ./.nimble/ + find ~/.nimble/ - name: Run tests run: | @@ -182,7 +184,11 @@ jobs: # https://github.com/status-im/nimbus-eth2/issues/3121 export NIMFLAGS="-d:nimRawSetjmp" fi + + find ./.nimble/ + find ~/.nimble/ nimble test -y + if [[ "${{ matrix.branch }}" == "version-1-6" || "${{ matrix.branch }}" == "devel" ]]; then echo -e "\nTesting with '--gc:orc':\n" export NIMFLAGS="${NIMFLAGS} --gc:orc"