This repository was archived by the owner on Mar 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Expand file tree Collapse file tree 2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 11version : 2
22defaults : &defaults
3- docker :
4- - image : circleci/node:15.5.1-stretch-browsers
3+ docker :
4+ - image : cimg/python:3.10.2
55install_dependency : &install_dependency
66 name : Installation of build and deployment dependencies.
77 command : |
8- sudo apt-get update
9- sudo apt install jq python3-pip
10- sudo pip3 install awscli --upgrade
11- sudo pip3 install docker-compose
8+ pip3 install awscli --upgrade
9+ pip3 install docker-compose
1210install_deploysuite : &install_deploysuite
1311 name : Installation of install_deploysuite.
1412 command : |
@@ -71,7 +69,6 @@ workflows:
7169 branches :
7270 only :
7371 - develop
74- - dev-circleci
7572
7673 # Production builds are exectuted only on tagged commits to the
7774 # master branch.
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ processCreate.schema = {
6363 originator : Joi . string ( ) . required ( ) ,
6464 timestamp : Joi . date ( ) . required ( ) ,
6565 'mime-type' : Joi . string ( ) . required ( ) ,
66+ key : Joi . string ( ) . allow ( null ) ,
6667 payload : Joi . object ( ) . keys ( {
6768 id : Joi . id ( )
6869 } ) . required ( ) . unknown ( true )
@@ -74,6 +75,7 @@ processUpdate.schema = {
7475 originator : Joi . string ( ) . required ( ) ,
7576 timestamp : Joi . date ( ) . required ( ) ,
7677 'mime-type' : Joi . string ( ) . required ( ) ,
78+ key : Joi . string ( ) . allow ( null ) ,
7779 payload : Joi . object ( ) . keys ( {
7880 id : Joi . id ( )
7981 } ) . required ( ) . unknown ( true )
You can’t perform that action at this time.
0 commit comments