We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c231473 commit a1cc3d7Copy full SHA for a1cc3d7
.github/workflows/library_rust_tests.yml
@@ -13,6 +13,11 @@ on:
13
required: false
14
default: false
15
type: boolean
16
+ mpl-head:
17
+ description: "Running on MPL HEAD"
18
+ required: false
19
+ default: false
20
+ type: boolean
21
22
jobs:
23
testRust:
@@ -59,6 +64,15 @@ jobs:
59
64
with:
60
65
dafny-version: nightly-2024-12-03-4954170
61
66
67
+ - name: Update MPL submodule if using MPL HEAD
68
+ if: ${{ inputs.mpl-head == true }}
69
+ working-directory: submodules/MaterialProviders
70
+ run: |
71
+ git checkout main
72
+ git pull
73
+ git submodule update --init --recursive
74
+ git rev-parse HEAD
75
+
62
76
# Remove this after the formatting in Rust starts working
63
77
- name: smithy-dafny Rust hacks
78
shell: bash
0 commit comments