Skip to content

Commit 0d73fe3

Browse files
committed
Remove caching of dependencies that don't exist.
1 parent d079a8e commit 0d73fe3

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/dub.yml

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,17 @@ jobs:
3939
with:
4040
compiler: ${{ matrix.compiler }}
4141

42-
- name: Upgrade dub dependencies
43-
uses: WebFreak001/[email protected]
42+
# Note: this is not needed, because vanilla mysql-natve has no dependencies
43+
#- name: Upgrade dub dependencies
44+
# uses: WebFreak001/[email protected]
4445

4546
- name: Build Library
4647
run: dub build --build=release --config=library
4748

4849
# cache
49-
- uses: WebFreak001/[email protected]
50-
if: startsWith(matrix.os, 'windows')
51-
with: { store: true }
50+
#- uses: WebFreak001/[email protected]
51+
# if: startsWith(matrix.os, 'windows')
52+
# with: { store: true }
5253

5354
# Older compiler versions
5455
build-older:
@@ -87,12 +88,13 @@ jobs:
8788
with:
8889
compiler: ${{ matrix.compiler }}
8990

90-
- name: Upgrade dub dependencies
91-
uses: WebFreak001/[email protected]
91+
# Note: this is not needed, because vanilla mysql-natve has no dependencies
92+
#- name: Upgrade dub dependencies
93+
# uses: WebFreak001/[email protected]
9294

9395
- name: Build Library
9496
run: dub build --build=release --config=library
9597

9698
# cache
97-
- uses: WebFreak001/[email protected]
98-
with: { store: true }
99+
#- uses: WebFreak001/[email protected]
100+
# with: { store: true }

0 commit comments

Comments
 (0)