Skip to content

Commit 30cf455

Browse files
committed
format
1 parent 2cb1bb5 commit 30cf455

File tree

3 files changed

+25
-28
lines changed

3 files changed

+25
-28
lines changed

.github/actions/mpl-head/mpl_head_codegen.yml

+15-15
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,21 @@ jobs:
3434
- uses: actions/checkout@v3
3535
with:
3636
submodules: recursive
37-
38-
- name: Update MPL submodule
39-
working-directory: submodules/MaterialProviders
40-
shell: bash
41-
run: |
42-
git checkout main
43-
git pull
44-
git submodule update --init --recursive
45-
46-
- name: Read MPL Version from its properties file
47-
id: read_property
48-
uses: christian-draeger/[email protected]
49-
with:
50-
path: "submodules/MaterialProviders/project.properties"
51-
properties: "mplVersion"
37+
38+
- name: Update MPL submodule
39+
working-directory: submodules/MaterialProviders
40+
shell: bash
41+
run: |
42+
git checkout main
43+
git pull
44+
git submodule update --init --recursive
45+
46+
- name: Read MPL Version from its properties file
47+
id: read_property
48+
uses: christian-draeger/[email protected]
49+
with:
50+
path: "submodules/MaterialProviders/project.properties"
51+
properties: "mplVersion"
5252

5353
# Only used to format generated code
5454
# and to translate version strings such as "nightly-latest"

.github/workflows/daily_ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ jobs:
6060
needs: getVersion
6161
uses: ./.github/workflows/ci_examples_net.yml
6262
with:
63-
dafny: ${{needs.getVersion.outputs.version}}
63+
dafny: ${{needs.getVersion.outputs.version}}

.github/workflows/mpl-head.yml

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
1-
# This workflow invokes other workflows with the latest MPL head at 14:00 UTC (7am PDT)
2-
name: MPL HEAD Integration
1+
# This workflow invokes other workflows with the latest MPL head at 14:00 UTC (7am PDT)
2+
name: CI MPL HEAD
33

44
on:
55
pull_request:
6-
# schedule:
7-
# # Although this is triggered daily the MPL may not get daily commits, which
8-
# # means that some builds MAY get the same MPL HEAD.
9-
# - cron: "00 14 * * 1-5"
6+
107
jobs:
118
getVersion:
129
# Don't run the cron builds on forks
@@ -38,34 +35,34 @@ jobs:
3835
# uses: ./.github/workflows/test_vector_verification.yml
3936
# with:
4037
# dafny: ${{needs.getVerifyVersion.outputs.version}}
41-
# mpl-head: true
38+
# mpl-head: true
4239
# mpl-head-ci-java-test-vectors:
4340
# needs: getVersion
4441
# uses: ./.github/workflows/ci_test_vector_java.yml
4542
# with:
4643
# dafny: ${{needs.getVersion.outputs.version}}
47-
# mpl-head: true
44+
# mpl-head: true
4845
# mpl-headci-java-examples:
4946
# needs: getVersion
5047
# uses: ./.github/workflows/ci_examples_java.yml
5148
# with:
5249
# dafny: ${{needs.getVersion.outputs.version}}
53-
# mpl-head: true
50+
# mpl-head: true
5451
# mpl-head-ci-net:
5552
# needs: getVersion
5653
# uses: ./.github/workflows/ci_test_net.yml
5754
# with:
5855
# dafny: ${{needs.getVersion.outputs.version}}
59-
# mpl-head: true
56+
# mpl-head: true
6057
# mpl-head-ci-net-test-vectors:
6158
# needs: getVersion
6259
# uses: ./.github/workflows/ci_test_vector_net.yml
6360
# with:
6461
# dafny: ${{needs.getVersion.outputs.version}}
65-
# mpl-head: true
62+
# mpl-head: true
6663
# mpl-head-ci-net-examples:
6764
# needs: getVersion
6865
# uses: ./.github/workflows/ci_examples_net.yml
6966
# with:
7067
# dafny: ${{needs.getVersion.outputs.version}}
71-
# mpl-head: true
68+
# mpl-head: true

0 commit comments

Comments
 (0)