File tree 4 files changed +18
-24
lines changed
4 files changed +18
-24
lines changed Original file line number Diff line number Diff line change @@ -21,15 +21,15 @@ runs:
21
21
git checkout main
22
22
git pull
23
23
git submodule update --init --recursive
24
-
24
+
25
25
- name : Get the MPL version from the MPL submodule
26
26
id : read_property
27
27
uses :
christian-draeger/[email protected]
28
28
with :
29
- path : " submodules/MaterialProviders// project.properties"
29
+ path : " submodules/MaterialProviders/project.properties"
30
30
properties : " mplVersion"
31
31
32
32
- name : Update top-level project.properties file
33
33
shell : bash
34
34
run : |
35
- sed "s/mplDependencyJavaVersion=.*/mplDependencyJavaVersion=${{steps.read_property.outputs.mplVersion}}/g" project.properties > project.properties2; mv project.properties2 project.properties
35
+ sed "s/mplDependencyJavaVersion=.*/mplDependencyJavaVersion=${{steps.read_property.outputs.mplVersion}}/g" project.properties > project.properties2; mv project.properties2 project.properties
Original file line number Diff line number Diff line change 7
7
description : " The dafny version to run"
8
8
required : true
9
9
type : string
10
- mpl-head :
11
- description : " Using MPL HEAD"
12
- required : false
13
- default : false
14
- type : boolean
15
10
16
11
jobs :
17
12
code-generation :
39
34
with :
40
35
submodules : recursive
41
36
42
- - uses : ./.github/actions/mpl-head
43
- if : ${{ inputs.mpl-head == true }}
44
- with :
45
- dafny : ${{ env.DAFNY_VERSION }}
46
- update-and-regenerate-mpl : true
47
-
48
37
# Only used to format generated code
49
38
# and to translate version strings such as "nightly-latest"
50
39
# to an actual DAFNY_VERSION.
Original file line number Diff line number Diff line change 13
13
required : false
14
14
default : false
15
15
type : boolean
16
+ mpl-head :
17
+ description : " Using MPL HEAD"
18
+ required : false
19
+ default : false
20
+ type : boolean
16
21
17
22
jobs :
18
23
verification :
47
52
with :
48
53
dafny-version : ${{ inputs.dafny }}
49
54
55
+ - uses : ./.github/actions/mpl-head
56
+ if : ${{ inputs.mpl-head == true }}
57
+ with :
58
+ dafny : ${{ env.DAFNY_VERSION }}
59
+ update-and-regenerate-mpl : true
60
+
50
61
# dafny-reportgenerator requires next6
51
62
# but only 7.0 is installed on macos-12-large
52
63
- name : Setup .NET Core SDK '6.0.x'
Original file line number Diff line number Diff line change @@ -18,19 +18,13 @@ jobs:
18
18
uses : ./.github/workflows/library_format.yml
19
19
with :
20
20
dafny : ${{needs.getVersion.outputs.version}}
21
- mpl-head-ci-codegen :
22
- needs : getVersion
21
+ mpl-head-ci-verification :
22
+ needs : getVerifyVersion
23
23
if : github.event_name != 'schedule' || github.repository_owner == 'aws'
24
- uses : ./.github/workflows/ci_codegen .yml
24
+ uses : ./.github/workflows/library_dafny_verification .yml
25
25
with :
26
- dafny : ${{needs.getVersion .outputs.version}}
26
+ dafny : ${{needs.getVerifyVersion .outputs.version}}
27
27
mpl-head : true
28
- # mpl-head-ci-verification:
29
- # needs: getVerifyVersion
30
- # if: github.event_name != 'schedule' || github.repository_owner == 'aws'
31
- # uses: ./.github/workflows/library_dafny_verification.yml
32
- # with:
33
- # dafny: ${{needs.getVerifyVersion.outputs.version}}
34
28
# mpl-head-ci-test-vector-verification:
35
29
# needs: getVerifyVersion
36
30
# uses: ./.github/workflows/test_vector_verification.yml
You can’t perform that action at this time.
0 commit comments