Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroCabeza committed Jul 30, 2024
1 parent fe514f0 commit 1373496
Showing 1 changed file with 3 additions and 26 deletions.
29 changes: 3 additions & 26 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ jobs:
uses: actions/cache@v3
with:
path: nimbledeps
key: nimbledeps-${{ hashFiles('.pinned') }}
# Nim branch is used as a simple way to differentiate between nimble using the "pkgs" or "pkgs2" directories.
# The change happened on Nimble v0.14.0.
key: nimbledeps-${{ matrix.nim.branch }}-${{ hashFiles('.pinned') }}

- name: Install deps
if: ${{ steps.deps-cache.outputs.cache-hit != 'true' }}
Expand All @@ -95,31 +97,6 @@ jobs:
# Set GCC-14 as the default
sudo update-alternatives --set gcc /usr/bin/gcc-14
- name: Debug Info
run: |
echo ""
echo ""
echo "List"
nimble list -i || echo "failed to list"
echo ""
echo ""
echo ""
nimble path bearssl || echo "couldnt fetch bearssl"
echo ""
echo ""
echo ""
nimble path chronicles || echo "couldnt fetch chronicles"
echo ""
echo ""
echo ""
echo "# pkgs"
ls -la ./nimbledeps/pkgs/ || echo "failed to fetch pkgs"
echo ""
echo ""
echo ""
echo "# pkgs2"
ls -la ./nimbledeps/pkgs2/ || echo "failed to fetch pkgs2"
- name: Run tests
run: |
gcc --version
Expand Down

0 comments on commit 1373496

Please sign in to comment.