Skip to content

Commit 0a0a3f7

Browse files
committed
m
1 parent 4ba5139 commit 0a0a3f7

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

.github/workflows/ci_test_latest_released_mpl_java.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,25 @@ jobs:
7474
# we want to verify that the version pulled down from maven works correctly
7575
make transpile_implementation_java
7676
make transpile_test_java
77-
make mvn_local_deploy
78-
make test_java
77+
# make mvn_local_deploy
78+
# make test_java
7979

80-
- name: Run Extensive Tests
81-
working-directory: ./DynamoDbEncryption
82-
run: |
83-
gradle -p runtimes/java clean
84-
gradle -p runtimes/java test
80+
# - name: Run Extensive Tests
81+
# working-directory: ./DynamoDbEncryption
82+
# run: |
83+
# gradle -p runtimes/java clean
84+
# gradle -p runtimes/java test
8585

8686
# This makes sure that we are using the correct MPL version to test the DB-ESDK.
8787
# If this contains a SNAPSHOT version, this will fail because'
8888
# we are NOT building the MPL recursively but pulling from Maven.
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}}
93+
cat project.properties
9294
sed "s/mplVersion=.*/mplVersion=${{needs.getMplDependencyJavaVersion.outputs.version}}/g" project.properties > project.properties2; mv project.properties2 project.properties
95+
cat project.properties
9396
9497
# The following three steps: "Transpile MPL Test Vectors without recursively building the MPL",
9598
# "Run Test Vectors", and "Test Examples" mimic the tests in ./codebuild/staging/validate-staging.yml
@@ -98,6 +101,7 @@ jobs:
98101
run: |
99102
# Run transpile by itself. We don't want to locally build the MPL because
100103
# we want to verify that the version pulled down from maven works correctly
104+
cat ../project.properties
101105
make transpile_implementation_java
102106
make transpile_test_java
103107
make mvn_local_deploy

0 commit comments

Comments
 (0)