Skip to content

Commit

Permalink
CI with user-keys encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed May 11, 2021
1 parent 51a51ff commit b7cd1e9
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,9 @@ config = {
}
],
},
'api-core-masterkey': {
'api-core-userkey': {
'suites': [
'apiCoreMKey',
'apiCoreUKey',
],
'databases': [
'mysql:8.0',
Expand All @@ -195,7 +195,7 @@ config = {
'emailNeeded': True,
'federatedServerNeeded': True,
'extraEnvironment': {
'ENCRYPTION_TYPE': 'masterkey',
'ENCRYPTION_TYPE': 'user-keys',
},
'extraSetup': [
{
Expand All @@ -205,15 +205,15 @@ config = {
'commands': [
'cd /var/www/owncloud/server',
'php occ encryption:enable',
'php occ encryption:select-encryption-type masterkey --yes',
'php occ encryption:select-encryption-type user-keys --yes',
'php occ config:list',
]
}
],
},
'api-core-latest-masterkey': {
'api-core-latest-userkeys': {
'suites': [
'apiCoreMKey',
'apiCoreUKey',
],
'databases': [
'mysql:8.0',
Expand All @@ -228,7 +228,7 @@ config = {
'federatedServerNeeded': True,
'cron': 'nightly',
'extraEnvironment': {
'ENCRYPTION_TYPE': 'masterkey',
'ENCRYPTION_TYPE': 'user-keys',
},
'extraSetup': [
{
Expand All @@ -238,15 +238,15 @@ config = {
'commands': [
'cd /var/www/owncloud/server',
'php occ encryption:enable',
'php occ encryption:select-encryption-type masterkey --yes',
'php occ encryption:select-encryption-type user-keys --yes',
'php occ config:list',
]
}
],
},
'cli-core-masterkey': {
'cli-core-userkeys': {
'suites': [
'cliCoreMKey',
'cliCoreUKey',
],
'databases': [
'mysql:8.0',
Expand All @@ -259,7 +259,7 @@ config = {
'numberOfParts': 7,
'emailNeeded': True,
'extraEnvironment': {
'ENCRYPTION_TYPE': 'masterkey',
'ENCRYPTION_TYPE': 'user-keys',
},
'extraSetup': [
{
Expand All @@ -269,15 +269,15 @@ config = {
'commands': [
'cd /var/www/owncloud/server',
'php occ encryption:enable',
'php occ encryption:select-encryption-type masterkey --yes',
'php occ encryption:select-encryption-type user-keys --yes',
'php occ config:list',
]
}
],
},
'webUI-core-masterkey': {
'webUI-core-userkeys': {
'suites': [
'webUIcoreMKey',
'webUIcoreUKey',
],
'databases': [
'mysql:8.0',
Expand All @@ -291,7 +291,7 @@ config = {
'emailNeeded': True,
'federatedServerNeeded': True,
'extraEnvironment': {
'ENCRYPTION_TYPE': 'masterkey',
'ENCRYPTION_TYPE': 'user-keys',
},
'extraSetup': [
{
Expand All @@ -301,15 +301,15 @@ config = {
'commands': [
'cd /var/www/owncloud/server',
'php occ encryption:enable',
'php occ encryption:select-encryption-type masterkey --yes',
'php occ encryption:select-encryption-type user-keys --yes',
'php occ config:list',
]
}
],
},
'webUI-core-latest-masterkey': {
'webUI-core-latest-userkeys': {
'suites': [
'webUIcoreMKey',
'webUIcoreUKey',
],
'databases': [
'mysql:8.0',
Expand All @@ -324,7 +324,7 @@ config = {
'federatedServerNeeded': True,
'cron': 'nightly',
'extraEnvironment': {
'ENCRYPTION_TYPE': 'masterkey',
'ENCRYPTION_TYPE': 'user-keys',
},
'extraSetup': [
{
Expand All @@ -334,7 +334,7 @@ config = {
'commands': [
'cd /var/www/owncloud/server',
'php occ encryption:enable',
'php occ encryption:select-encryption-type masterkey --yes',
'php occ encryption:select-encryption-type user-keys --yes',
'php occ config:list',
]
}
Expand Down

0 comments on commit b7cd1e9

Please sign in to comment.