Skip to content

Commit

Permalink
Merge pull request eurec4a#105 from d70-t/cache
Browse files Browse the repository at this point in the history
Cache improvements
  • Loading branch information
d70-t authored Sep 11, 2023
2 parents c18fd7a + 858cb66 commit afa08ad
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 17 deletions.
55 changes: 39 additions & 16 deletions .github/workflows/buildbook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,16 @@ name: buildbook

on: [push, pull_request]

env:
# Increase this value to reset cache
CONDA_CACHE_NUMBER: 0
PYDEVD_DISABLE_FILE_VALIDATION: 1 # disable warnings that debugger might not work using frozen (i.e. faster-to-load) modules. We'd expect debugging to be done outside of CI, so here it's probably fine to hide it.

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
ipfs-version: [0.12.0]
defaults:
run:
Expand All @@ -17,28 +21,47 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python modules with conda
- name: initialize conda
uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: how_to_eurec4a
environment-file: environment.yml
python-version: ${{ matrix.python-version }}
auto-activate-base: false
use-mamba: true
miniforge-variant: Mambaforge
miniforge-version: latest
- name: restore conda environment from cache
uses: actions/cache/restore@v3
with:
path: ${{ env.CONDA }}/envs
key:
conda-${{ runner.os }}--${{ runner.arch }}--${{ hashFiles('environment.yml', 'requirements.txt') }}-${{ env.CONDA_CACHE_NUMBER }}
id: conda_cache
- name: install conda environment
run:
mamba env update -n how_to_eurec4a -f environment.yml
if: steps.conda_cache.outputs.cache-hit != 'true'
id: install_conda_env
- name: upload conda environment to cache
uses: actions/cache/save@v3
if: steps.install_conda_env.outcome == 'success'
with:
path: ${{ env.CONDA }}/envs
key:
conda-${{ runner.os }}--${{ runner.arch }}--${{ hashFiles('environment.yml', 'requirements.txt') }}-${{ env.CONDA_CACHE_NUMBER }}
- name: Install local ipfs node
run: |
sudo apt-get update
sudo apt-get install -y wget curl jq
bash <(curl https://raw.githubusercontent.com/eurec4a/ipfs_tools/main/install_and_run_ipfs.sh) ${{ matrix.ipfs-version }}
- name: setting up notebook execution cache
uses: actions/cache@v3
uses: actions/cache/restore@v3
with:
path: |
how_to_eurec4a/_build/.jupyter_cache
key: ${{ runner.os }}-${{ hashFiles('requirements.txt') }}-${{ matrix.ipfs-version }}-${{ matrix.python-version }}
key: notebooks-${{ runner.os }}-${{ hashFiles('environment.yml', 'requirements.txt') }}-${{ github.run_id }}-${{ github.run_attempt }}
restore-keys: |
notebooks-${{ runner.os }}-${{ hashFiles('environment.yml', 'requirements.txt') }}-${{ github.run_id }}-
notebooks-${{ runner.os }}-${{ hashFiles('environment.yml', 'requirements.txt') }}-
- name: build book
run: |
conda info
Expand All @@ -49,14 +72,14 @@ jobs:
with:
path: |
how_to_eurec4a/_build/.jupyter_cache
key: ${{ runner.os }}-${{ hashFiles('requirements.txt') }}-${{ matrix.ipfs-version }}-${{ matrix.python-version }}
key: notebooks-${{ runner.os }}-${{ hashFiles('environment.yml', 'requirements.txt') }}-${{ github.run_id }}-${{ github.run_attempt }}
- name: Archive build artifacts
if: always()
uses: actions/upload-artifact@v3
with:
name: build
name: html
path: |
how_to_eurec4a/_build
how_to_eurec4a/_build/html
publish:
needs: build
Expand All @@ -66,13 +89,13 @@ jobs:
- name: Download compiled book
uses: actions/download-artifact@v3
with:
name: build
path: _build
name: html
path: html
- name: set CNAME
run: |
printf "howto.eurec4a.eu" > _build/html/CNAME
- name: Publish book on github pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: _build/html
publish_dir: html
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
name: how_to_eurec4a
dependencies:
- python>=3.9
- anaconda
- cartopy
- matplotlib
- pip
Expand Down

0 comments on commit afa08ad

Please sign in to comment.