@@ -50,30 +50,30 @@ jobs:
5050 distribution : " corretto"
5151 java-version : ${{ matrix.java-version }}
5252
53- - name : Setup Dafny
54- uses : dafny-lang/setup-dafny-action@v1.8.0
55- with :
56- dafny-version : ${{ needs.getVersion.outputs.version }}
53+ # - name: Setup Dafny
54+ # uses: dafny-lang/setup-dafny-action@v1.8.0
55+ # with:
56+ # dafny-version: ${{ needs.getVersion.outputs.version }}
5757
58- - name : Regenerate code using smithy-dafny if necessary
59- if : ${{ inputs.regenerate-code }}
60- uses : ./.github/actions/polymorph_codegen
61- with :
62- dafny : ${{ env.DAFNY_VERSION }}
63- library : DynamoDbEncryption
64- diff-generated-code : false
65- update-and-regenerate-mpl : true
58+ # - name: Regenerate code using smithy-dafny if necessary
59+ # if: ${{ inputs.regenerate-code }}
60+ # uses: ./.github/actions/polymorph_codegen
61+ # with:
62+ # dafny: ${{ env.DAFNY_VERSION }}
63+ # library: DynamoDbEncryption
64+ # diff-generated-code: false
65+ # update-and-regenerate-mpl: true
6666
6767 # The following two steps: "Build and deploy to maven local" and "Run Extensive Tests"
6868 # mimic the tests in ./codebuild/staging/release-staging.yml
69- - name : Build and deploy to maven local
70- shell : bash
71- working-directory : ./DynamoDbEncryption
72- run : |
73- # Run transpile by itself. We don't want to locally build the MPL because
74- # we want to verify that the version pulled down from maven works correctly
75- make transpile_implementation_java
76- make transpile_test_java
69+ # - name: Build and deploy to maven local
70+ # shell: bash
71+ # working-directory: ./DynamoDbEncryption
72+ # run: |
73+ # # Run transpile by itself. We don't want to locally build the MPL because
74+ # # we want to verify that the version pulled down from maven works correctly
75+ # make transpile_implementation_java
76+ # make transpile_test_java
7777 # make mvn_local_deploy
7878 # make test_java
7979
8989 - name : Update project.properties to use the correct MPL version (from project.properties in DB-ESDK)
9090 working-directory : ./submodules/MaterialProviders/
9191 run : |
92- echo ${{needs.getMplDependencyJavaVersion.outputs.version}}
92+ echo ${{ needs.getMplDependencyJavaVersion.outputs.version }}
9393 cat project.properties
94- sed "s/mplVersion=.*/mplVersion=${{needs.getMplDependencyJavaVersion.outputs.version}}/g" project.properties > project.properties2; mv project.properties2 project.properties
94+ sed "s/mplVersion=.*/mplVersion=${{ needs.getMplDependencyJavaVersion.outputs.version }}/g" project.properties > project.properties2; mv project.properties2 project.properties
9595 cat project.properties
9696
9797 # The following three steps: "Transpile MPL Test Vectors without recursively building the MPL",
0 commit comments