Skip to content

Commit 355efd0

Browse files
committed
chore(CI): fix dafny_interop to setup_net
1 parent ffb0c38 commit 355efd0

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/dafny_interop_examples_java.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ jobs:
5959
git submodule update --init --recursive
6060
git rev-parse HEAD
6161
62+
# Without this the if-dafny-at-least command includes "Downloading ..." output
63+
- name: Arbitrary makefile target to force downloading Gradle
64+
shell: bash
65+
run: |
66+
make -C submodules/MaterialProviders/StandardLibrary setup_net
67+
6268
- name: Setup Java ${{ matrix.java-version }}
6369
uses: actions/setup-java@v4
6470
with:

.github/workflows/dafny_interop_java.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,12 @@ jobs:
5959
git submodule update --init --recursive
6060
git rev-parse HEAD
6161
62+
# Without this the if-dafny-at-least command includes "Downloading ..." output
63+
- name: Arbitrary makefile target to force downloading Gradle
64+
shell: bash
65+
run: |
66+
make -C submodules/MaterialProviders/StandardLibrary setup_net
67+
6268
- name: Setup Java ${{ matrix.java-version }}
6369
uses: actions/setup-java@v4
6470
with:

.github/workflows/dafny_interop_test_vector_java.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,12 @@ jobs:
6868
git submodule update --init --recursive
6969
git rev-parse HEAD
7070
71+
# Without this the if-dafny-at-least command includes "Downloading ..." output
72+
- name: Arbitrary makefile target to force downloading Gradle
73+
shell: bash
74+
run: |
75+
make -C submodules/MaterialProviders/StandardLibrary setup_net
76+
7177
- name: Setup Java ${{ matrix.java-version }}
7278
uses: actions/setup-java@v4
7379
with:

0 commit comments

Comments
 (0)