Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code style #2447

Merged
merged 2 commits into from
Feb 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 11 additions & 11 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ workspace:
path: src

branches:
- master
- master

clone:
git:
Expand All @@ -23,43 +23,43 @@ pipeline:
image: owncloudci/nodejs:11
pull: true
commands:
- cd docs/
- yarn install
- cd docs/
- yarn install

docs-validate:
image: owncloudci/nodejs:11
pull: true
commands:
- cd docs/
- yarn validate
- cd docs/
- yarn validate

docs-build:
image: owncloudci/nodejs:11
pull: true
commands:
- cd docs/
- yarn antora
- cd docs/
- yarn antora

docs-pdf:
image: owncloudci/asciidoctor:latest
pull: true
commands:
- cd docs/
- make pdf
- cd docs/
- make pdf

docs-artifacts:
image: owncloud/ubuntu:latest
pull: true
commands:
- tree docs/public/
- tree docs/public/

cache-rebuild:
image: plugins/s3-cache:1
pull: true
secrets: [ cache_s3_endpoint, cache_s3_access_key, cache_s3_secret_key ]
rebuild: true
mount:
- docs/cache
- docs/cache
when:
local: false
event: [ push ]
Expand Down
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,11 @@ build

# android sdk captures folder
captures

!.idea/
.idea/*
!.idea/codeStyles/

!Project.xml
!codeStyleConfig.xml

Loading