remove root Makefile and get rid of cd in drone ci

This commit is contained in:
Willy Kloucek
2020-11-23 09:12:45 +01:00
parent bdb7433926
commit cbcf82136d
4 changed files with 34 additions and 88 deletions
+5 -4
View File
@@ -625,22 +625,23 @@ def website(ctx):
'name': 'prepare',
'image': 'owncloudci/alpine:latest',
'commands': [
'make docs-copy'
'make -C docs docs-copy'
],
},
{
'name': 'test',
'image': 'webhippie/hugo:latest',
'commands': [
'cd hugo',
'cd docs/hugo',
'hugo',
],
},
{
'name': 'list',
'name': 'list and remove temporary files',
'image': 'owncloudci/alpine:latest',
'commands': [
'tree hugo/public',
'tree docs/hugo/public',
'rm -rf docs/hugo',
],
},
{