File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 24
24
getMplHeadVersion :
25
25
uses : ./.github/workflows/mpl_head_version.yml
26
26
with :
27
- mpl-head : false
27
+ mpl-head : ${{inputs.mpl-commit}}
28
28
dafny-interop-java :
29
29
needs : getMplHeadVersion
30
30
uses : ./.github/workflows/dafny_interop_java.yml
Original file line number Diff line number Diff line change 9
9
mpl-head :
10
10
description : " Using MPL HEAD?"
11
11
required : true
12
- type : boolean
12
+ default : main
13
+ type : string
13
14
outputs :
14
15
version :
15
16
description : " The dafny version for verify"
@@ -25,11 +26,10 @@ jobs:
25
26
with :
26
27
submodules : recursive
27
28
- name : Update MPL submodule locally if requested
28
- if : ${{inputs.mpl-head == true }}
29
29
working-directory : submodules/MaterialProviders
30
30
shell : bash
31
31
run : |
32
- git checkout main
32
+ git checkout ${{inputs.mpl-head}}
33
33
git pull
34
34
git submodule update --init --recursive
35
35
git rev-parse HEAD
You can’t perform that action at this time.
0 commit comments