Skip to content

Commit 3625f98

Browse files
debug
1 parent 9806fba commit 3625f98

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

codebuild/py311/generate_decrypt_vectors_keyrings.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,15 @@ phases:
2222
commands:
2323
- pip install "tox < 4.0"
2424
- cd test_vector_handlers
25-
- mkdir $CODEBUILD_RESOLVED_SOURCE_VERSION
25+
# - mkdir $CODEBUILD_RESOLVED_SOURCE_VERSION
2626
- |
2727
tox -- \
2828
--input test/aws-crypto-tools-test-vector-framework/features/CANONICAL-GENERATED-MANIFESTS/0006-awses-message-decryption-generation.v2.json \
2929
--output 311_keyring \
3030
--keyrings
31-
- zip -r $CODEBUILD_RESOLVED_SOURCE_VERSION/311_keyring.zip 311_keyring
32-
artifacts:
33-
files:
34-
- test_vector_handlers/$CODEBUILD_RESOLVED_SOURCE_VERSION/311_keyring.zip
31+
# - zip -r $CODEBUILD_RESOLVED_SOURCE_VERSION/311_keyring.zip 311_keyring
32+
- zip -r 311_keyring.zip 311_keyring
33+
- aws s3 cp 311_keyring.zip s3://generated-vectors-artifacts-bucket/$CODEBUILD_RESOLVED_SOURCE_VERSION/311_keyring.zip
34+
# artifacts:
35+
# files:
36+
# - test_vector_handlers/$CODEBUILD_RESOLVED_SOURCE_VERSION/311_keyring.zip

codebuild/py37/generate_decrypt_vectors.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ phases:
2626
tox -- \
2727
--input test/aws-crypto-tools-test-vector-framework/features/CANONICAL-GENERATED-MANIFESTS/0006-awses-message-decryption-generation.v2.json \
2828
--output 37_masterkey
29-
- zip -r 37_master.zip 37_masterkey
30-
artifacts:
31-
files:
32-
- test_vector_handlers/37_master.zip
33-
name: $CODEBUILD_INITIATOR/37_master.zip
34-
discard-paths: yes
29+
- zip -r 37_masterkey.zip 37_masterkey
30+
- aws s3 cp 37_masterkey.zip s3://generated-vectors-artifacts-bucket/$CODEBUILD_RESOLVED_SOURCE_VERSION/37_masterkey.zip
31+
# artifacts:
32+
# files:
33+
# - test_vector_handlers/37_master.zip
34+
# name: $CODEBUILD_INITIATOR/37_master.zip
35+
# discard-paths: yes

0 commit comments

Comments
 (0)