You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if [[ "${{ matrix.platform.os }}" == windows* ]]; then
135
+
.ci-bin/p2pd.exe --version || echo "Warning: p2pd version check failed"
136
+
else
137
+
.ci-bin/p2pd --version || echo "Warning: p2pd version check failed"
138
+
fi
139
+
140
+
# Rest of the CI steps
90
141
- name: Restore deps from cache
91
142
id: deps-cache
92
143
uses: actions/cache@v3
93
144
with:
94
145
path: nimbledeps
95
-
# Using nim.ref as a simple way to differentiate between nimble using the "pkgs" or "pkgs2" directories.
96
-
# The change happened on Nimble v0.14.0. Also forcing the deps to be reinstalled on each os and cpu.
97
-
key: nimbledeps-${{ matrix.nim.ref }}-${{ matrix.builder }}-${{ matrix.platform.cpu }}-${{ hashFiles('.pinned') }} # hashFiles returns a different value on windows
0 commit comments