Skip to content
Closed
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .ci_support/environment-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
channels:
- conda-forge
dependencies:
- ipykernel
- myst-parser
- nbsphinx
- sphinx-gallery
- sphinx-rtd-theme
- versioneer
19 changes: 19 additions & 0 deletions .github/workflows/centralized-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Trying to track down the recent upstream breaks of building docs

name: centralized docs

on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pyiron/actions/build-docs@use_miniconda
with:
python-version: '3.12'
55 changes: 0 additions & 55 deletions .github/workflows/induce-failure.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/local-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Trying to track down the recent upstream breaks of building docs

name: local docs

on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:

jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pyiron/actions/cached-miniforge@use_miniconda
with:
python-version: '3.12'
env-files: .ci_support/environment-docs.yml .ci_support/environment.yml
# - uses: pyiron/actions/pyiron-config@use_miniconda
- name: Build sphinx documentation
shell: bash -l {0}
run: |
mkdir public_html
cd docs
sphinx-build -b html ./ ../public_html || exit 1;
cd ..
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Trying to track down the conda env failures

name: Cached action
name: setup-miniforge then unit tests

on:
push:
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/unittests.yml

This file was deleted.

Loading