check dirs

This commit is contained in:
Jaremy Creechley 2023-07-12 18:34:16 -07:00
parent 41c56c596c
commit 25dacebf7f
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -175,6 +175,8 @@ jobs:
- name: Setup Deps - name: Setup Deps
run: | run: |
nimble install -d nimble install -d
find ./.nimble/
find ~/.nimble/
- name: Run tests - name: Run tests
run: | run: |
@ -182,7 +184,11 @@ jobs:
# https://github.com/status-im/nimbus-eth2/issues/3121 # https://github.com/status-im/nimbus-eth2/issues/3121
export NIMFLAGS="-d:nimRawSetjmp" export NIMFLAGS="-d:nimRawSetjmp"
fi fi
find ./.nimble/
find ~/.nimble/
nimble test -y nimble test -y
if [[ "${{ matrix.branch }}" == "version-1-6" || "${{ matrix.branch }}" == "devel" ]]; then if [[ "${{ matrix.branch }}" == "version-1-6" || "${{ matrix.branch }}" == "devel" ]]; then
echo -e "\nTesting with '--gc:orc':\n" echo -e "\nTesting with '--gc:orc':\n"
export NIMFLAGS="${NIMFLAGS} --gc:orc" export NIMFLAGS="${NIMFLAGS} --gc:orc"