Skip to content

Commit

Permalink
Merge pull request #979 from opendatacube/develop
Browse files Browse the repository at this point in the history
update stable branch
  • Loading branch information
omad committed Jul 2, 2020
2 parents 084c84d + 62de7e2 commit 6668de3
Show file tree
Hide file tree
Showing 357 changed files with 27,326 additions and 17,923 deletions.
29 changes: 0 additions & 29 deletions .appveyor/environment_py27.yaml

This file was deleted.

28 changes: 0 additions & 28 deletions .appveyor/environment_py35.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions .appveyor/requirements.txt

This file was deleted.

88 changes: 0 additions & 88 deletions .appveyor/run_with_env.cmd

This file was deleted.

87 changes: 0 additions & 87 deletions .circleci/config.yml

This file was deleted.

1 change: 1 addition & 0 deletions .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ omit =
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
^except ImportError:$

# Don't complain if tests don't hit defensive assertion code:
raise AssertionError
Expand Down
23 changes: 23 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# EditorConfig is awesome: http://EditorConfig.org
#
# Use as master: https://github.com/TYPO3-Documentation/T3DocTeam/blob/master/.editorconfig

# top-most EditorConfig file
root = true

[{*.rst,*.rst.txt}]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 3

# MD-Files
[*.md]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 4
45 changes: 45 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: build-docs

on:
push:
branches:
- develop
- dra/docs-updates

env:
DKR: opendatacube/datacube-tests:latest

jobs:
main:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0

- name: Pull Docker
run: |
docker pull ${DKR}
- name: Build Docs
run: |
cat <<EOF | docker run --rm -i \
-v $(pwd):/src/datacube-core \
-e SKIP_DB=yes \
${DKR} bash -
sudo apt-get update && sudo apt-get install -y plantuml make
cd docs
pip install -r requirements.txt
make html
EOF
- name: Deploy to Netlify
uses: nwtgck/actions-netlify@v1.0
with:
production-branch: 'master'
publish-dir: 'docs/_build/html'
deploy-message: "Deploy from GitHub Actions"
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}

0 comments on commit 6668de3

Please sign in to comment.