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 1
1
version : 2
2
2
defaults : &defaults
3
- docker :
4
- - image : circleci/node:15.5.1-stretch-browsers
3
+ docker :
4
+ - image : cimg/python:3.10.2
5
5
install_dependency : &install_dependency
6
6
name : Installation of build and deployment dependencies.
7
7
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
12
10
install_deploysuite : &install_deploysuite
13
11
name : Installation of install_deploysuite.
14
12
command : |
@@ -71,7 +69,6 @@ workflows:
71
69
branches :
72
70
only :
73
71
- develop
74
- - dev-circleci
75
72
76
73
# Production builds are exectuted only on tagged commits to the
77
74
# master branch.
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ processCreate.schema = {
63
63
originator : Joi . string ( ) . required ( ) ,
64
64
timestamp : Joi . date ( ) . required ( ) ,
65
65
'mime-type' : Joi . string ( ) . required ( ) ,
66
+ key : Joi . string ( ) . allow ( null ) ,
66
67
payload : Joi . object ( ) . keys ( {
67
68
id : Joi . id ( )
68
69
} ) . required ( ) . unknown ( true )
@@ -74,6 +75,7 @@ processUpdate.schema = {
74
75
originator : Joi . string ( ) . required ( ) ,
75
76
timestamp : Joi . date ( ) . required ( ) ,
76
77
'mime-type' : Joi . string ( ) . required ( ) ,
78
+ key : Joi . string ( ) . allow ( null ) ,
77
79
payload : Joi . object ( ) . keys ( {
78
80
id : Joi . id ( )
79
81
} ) . required ( ) . unknown ( true )
You can’t perform that action at this time.
0 commit comments