-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Bokeh 2.3 and switch to GH Actions (#487)
- Loading branch information
1 parent
e569e23
commit 7a3a4da
Showing
16 changed files
with
1,019 additions
and
209 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
name: packages | ||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+a[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+b[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+' | ||
|
||
jobs: | ||
conda_build: | ||
name: Build Conda Packages | ||
runs-on: 'ubuntu-latest' | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge" | ||
PKG_TEST_PYTHON: "--test-python=py38" | ||
PYTHON_VERSION: "3.8" | ||
MPLBACKEND: "Agg" | ||
CONDA_UPLOAD_TOKEN: ${{ secrets.CONDA_UPLOAD_TOKEN }} | ||
steps: | ||
- name: remove nodejs | ||
run: | | ||
sudo rm /usr/local/bin/node | ||
sudo rm /usr/local/bin/npm | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "100" | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '15' | ||
- name: Fetch unshallow | ||
run: git fetch --prune --tags --unshallow -f | ||
- name: Set output | ||
id: vars | ||
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | ||
- name: conda setup | ||
run: | | ||
conda config --set always_yes True | ||
conda install -c pyviz "pyctdev>=0.5" | ||
doit ecosystem_setup | ||
- name: conda build | ||
run: | | ||
doit package_build --recipe=core $CHANS $PKG_TEST_PYTHON --test-group=unit | ||
doit package_build --recipe=recommended $PKG_TEST_PYTHON --test-group=unit | ||
- name: npm setup | ||
run: | | ||
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_API_TOKEN }}" > $HOME/.npmrc | ||
npm whoami | ||
npm -v | ||
- name: dev deploy | ||
if: (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')) | ||
run: | | ||
doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --recipe=core | ||
doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --recipe=recommended | ||
cd ./geoviews | ||
npm publish --tag dev | ||
- name: main deploy | ||
if: (!(contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc'))) | ||
run: | | ||
doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --label=main --recipe=core | ||
doit package_upload --token=$CONDA_UPLOAD_TOKEN --label=dev --label=main --recipe=recommended | ||
cd ./geoviews | ||
npm publish --tag latest | ||
pip_build: | ||
name: Build PyPI Packages | ||
runs-on: 'ubuntu-latest' | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge" | ||
PKG_TEST_PYTHON: "--test-python=py38" | ||
PYTHON_VERSION: "3.8" | ||
CHANS: "-c pyviz" | ||
MPLBACKEND: "Agg" | ||
PPU: ${{ secrets.PPU }} | ||
PPP: ${{ secrets.PPP }} | ||
PYPI: "https://upload.pypi.org/legacy/" | ||
steps: | ||
- name: remove nodejs | ||
run: | | ||
sudo rm /usr/local/bin/node | ||
sudo rm /usr/local/bin/npm | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "100" | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '15' | ||
- name: Fetch unshallow | ||
run: git fetch --prune --tags --unshallow -f | ||
- name: conda setup | ||
run: | | ||
conda config --set always_yes True | ||
conda install -c pyviz "pyctdev>=0.5" | ||
doit ecosystem_setup | ||
doit env_create $CHANS_DEV --python=$PYTHON_VERSION | ||
- name: env setup | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit develop_install $CHANS_DEV -o build | ||
doit pip_on_conda | ||
- name: pip build | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit ecosystem=pip package_build $PKG_TEST_PYTHON --test-group=flakes | ||
- name: git status | ||
run: | | ||
git status | ||
git diff | ||
- name: pip upload | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit ecosystem=pip package_upload -u $PPU -p $PPP -r $PYPI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
name: docs | ||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+a[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+b[0-9]+' | ||
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+' | ||
|
||
jobs: | ||
build_docs: | ||
name: Documentation | ||
runs-on: 'ubuntu-latest' | ||
strategy: | ||
fail-fast: false | ||
timeout-minutes: 120 | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
DESC: "Documentation build" | ||
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge" | ||
MPLBACKEND: "Agg" | ||
MOZ_HEADLESS: 1 | ||
DISPLAY: ":99.0" | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "100" | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
- name: Fetch unshallow | ||
run: git fetch --prune --tags --unshallow -f | ||
- name: Set output | ||
id: vars | ||
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} | ||
- name: conda setup | ||
run: | | ||
conda config --set always_yes True | ||
conda install -c pyviz "pyctdev>=0.5" | ||
doit ecosystem_setup | ||
doit env_create ${{ env.CHANS_DEV}} --python=3.7 | ||
- name: doit develop_install | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
conda list | ||
doit develop_install ${{ env.CHANS_DEV}} -o doc -o examples | ||
pip install sphinxcontrib-napoleon | ||
conda install -c conda-forge "nodejs=15.3.0" | ||
- name: sampledata | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
bokeh sampledata | ||
geoviews fetch-data --path=examples | ||
- name: generate rst | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
nbsite generate-rst --org holoviz --project-name geoviews | ||
- name: build docs | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
nbsite build --what=html --output=builtdocs --org holoviz --project-name geoviews | ||
- name: Deploy dev | ||
uses: peaceiris/actions-gh-pages@v3 | ||
if: (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')) | ||
with: | ||
personal_token: ${{ secrets.ACCESS_TOKEN }} | ||
external_repository: pyviz-dev/geoviews | ||
publish_dir: ./builtdocs | ||
force_orphan: true | ||
- name: Deploy main | ||
if: (!(contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc'))) | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./builtdocs | ||
cname: geoviews.org | ||
force_orphan: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: pytest | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
test_suite: | ||
name: Pytest on ${{ matrix.os }} with Python ${{ matrix.python-version }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ['ubuntu-latest', 'macos-latest', 'windows-latest'] | ||
python-version: [3.6, 3.7, 3.8] | ||
exclude: | ||
- os: windows-latest | ||
python-version: 3.6 | ||
- os: ubuntu-latest | ||
python-version: 3.6 | ||
timeout-minutes: 60 | ||
defaults: | ||
run: | ||
shell: bash -l {0} | ||
env: | ||
DESC: "Python ${{ matrix.python-version }} tests" | ||
HV_REQUIREMENTS: "unit_tests" | ||
PYTHON_VERSION: ${{ matrix.python-version }} | ||
CHANS_DEV: "-c pyviz/label/dev -c bokeh -c conda-forge" | ||
CHANS: "-c pyviz -c bokeh -c conda-forge" | ||
DISPLAY: ":99.0" | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: "100" | ||
- uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
miniconda-version: "latest" | ||
- name: Fetch unshallow | ||
run: git fetch --prune --tags --unshallow | ||
- name: conda setup | ||
run: | | ||
conda config --set always_yes True | ||
conda install -c pyviz "pyctdev>=0.5" | ||
doit ecosystem_setup | ||
conda install -c conda-forge "nodejs=15.3.0" | ||
doit env_create ${{ env.CHANS_DEV}} --python=${{ matrix.python-version }} | ||
- name: doit develop_install | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
conda list | ||
doit develop_install ${{ env.CHANS_DEV}} -o examples -o recommended -o tests -o build | ||
bokeh sampledata | ||
geoviews fetch-data --path=examples | ||
echo "-----" | ||
git describe | ||
- name: doit env_capture | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit env_capture | ||
- name: doit test_flakes | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit test_flakes | ||
- name: doit test_unit | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit test_unit | ||
- name: test examples | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
doit test_examples | ||
- name: codecov | ||
run: | | ||
eval "$(conda shell.bash hook)" | ||
conda activate test-environment | ||
codecov |
Oops, something went wrong.