[FIX]: Fix tests and update bbi #44
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
name: Deploy GitHub pages | |
on: | |
pull_request: | |
push: | |
branches: main | |
jobs: | |
build_docs: | |
runs-on: ubuntu-latest | |
env: | |
DISPLAY: ':99' | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y libgl1-mesa-glx qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools | |
sudo apt-get install -yqq libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 libopengl0 | |
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1400x900x24 -ac +extension GLX +render -noreset | |
name: 'Setup xvfb' | |
- run: | | |
sudo apt-get install -y git libopenmpi-dev openmpi-bin | |
pip install -r doc/doc-requirements.txt | |
pip install --progress-bar off https://github.com/sphinx-gallery/sphinx-gallery/zipball/master | |
pip install -e . | |
echo "localhost slots=50">hostfile | |
name: 'Install dependencies' | |
- run: | | |
LD_DEBUG=libs python -c "from PyQt5.QtWidgets import QApplication, QWidget; app = QApplication([])" | |
name: 'Check PyQt5' | |
- run: | | |
which python | |
QT_DEBUG_PLUGINS=1 mne sys_info | |
python -c "import numpy; numpy.show_config()" | |
LD_DEBUG=libs python -c "from PyQt5.QtWidgets import QApplication, QWidget; app = QApplication([])" | |
name: 'Check installation' | |
- run: sphinx-build -b html doc doc/_build/html | |
name: 'Generate HTML docs' | |
- name: Upload generated HTML as artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: DocHTML | |
path: doc/_build/html/ | |
deploy_docs: | |
if: ${{ github.ref == 'refs/heads/main' }} | |
needs: | |
build_docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: DocHTML | |
path: doc/_build/html/ | |
- name: Commit to documentation branch | |
run: | | |
git clone --no-checkout --depth 1 https://github.com/${{ github.repository_owner }}/hidimstat.git --branch gh-pages --single-branch gh-pages | |
cp -r doc/_build/html/* gh-pages/ | |
cd gh-pages | |
touch .nojekyll | |
git config --local user.email "[email protected]" | |
git config --local user.name "hidimstat GitHub Action" | |
git add . | |
git commit -m "Update documentation" -a || true | |
- name: Push changes | |
uses: ad-m/[email protected] | |
with: | |
branch: gh-pages | |
directory: gh-pages | |
github_token: ${{ secrets.GITHUB_TOKEN }} |