Merge pull request #303 from PyPSA/misc/improve-ci-speed

[DNMY] Improve CI performance.
This commit is contained in:
euronion 2022-01-13 18:25:12 +01:00 committed by GitHub
parent 9601ed65de
commit b660277e37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 64 additions and 31 deletions

View File

@ -4,6 +4,10 @@
name: CI name: CI
# Caching method based on and described by:
# epassaro (2021): https://dev.to/epassaro/caching-anaconda-environments-in-github-actions-5hde
# and code in GitHub repo: https://github.com/epassaro/cache-conda-envs
on: on:
push: push:
branches: branches:
@ -14,41 +18,72 @@ on:
schedule: schedule:
- cron: "0 5 * * TUE" - cron: "0 5 * * TUE"
env:
CACHE_NUMBER: 1 # Change this value to manually reset the environment cache
jobs: jobs:
build: build:
runs-on: ${{ matrix.os }}
strategy: strategy:
max-parallel: 5
matrix: matrix:
os: include:
- ubuntu-latest # Matrix required to handle caching with Mambaforge
- macos-latest - os: ubuntu-latest
- windows-latest label: ubuntu-latest
prefix: /usr/share/miniconda3/envs/pypsa-eur
- os: macos-latest
label: macos-latest
prefix: /Users/runner/miniconda3/envs/pypsa-eur
- os: windows-latest
label: windows-latest
prefix: C:\Miniconda3\envs\pypsa-eur
name: ${{ matrix.label }}
runs-on: ${{ matrix.os }}
defaults: defaults:
run: run:
shell: bash -l {0} shell: bash -l {0}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Miniconda - name: Setup secrets
uses: conda-incubator/setup-miniconda@v2.1.1
with: # checks out environment 'test' by default
mamba-version: "*"
channels: conda-forge,defaults
channel-priority: true
- name: Install dependencies
run: | run: |
echo -ne "url: ${CDSAPI_URL}\nkey: ${CDSAPI_TOKEN}\n" > ~/.cdsapirc echo -ne "url: ${CDSAPI_URL}\nkey: ${CDSAPI_TOKEN}\n" > ~/.cdsapirc
- name: Add solver to environment
run: |
echo -e " - glpk\n - ipopt<3.13.3" >> envs/environment.yaml echo -e " - glpk\n - ipopt<3.13.3" >> envs/environment.yaml
mamba env update -f envs/environment.yaml --name test
- name: Setup Mambaforge
uses: conda-incubator/setup-miniconda@v2
with:
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: pypsa-eur
use-mamba: true
- name: Set cache date
run: echo "DATE=$(date +'%Y%m%d')" >> $GITHUB_ENV
- name: Create environment cache
uses: actions/cache@v2
id: cache
with:
path: ${{ matrix.prefix }}
key: ${{ matrix.label }}-conda-${{ hashFiles('envs/environment.yaml') }}-${{ env.DATE }}-${{ env.CACHE_NUMBER }}
- name: Update environment due to outdated or unavailable cache
run: mamba env update -n pypsa-eur -f envs/environment.yaml
if: steps.cache.outputs.cache-hit != 'true'
- name: Test snakemake workflow - name: Test snakemake workflow
run: | run: |
conda activate pypsa-eur
conda list conda list
cp test/config.test1.yaml config.yaml cp test/config.test1.yaml config.yaml
snakemake --cores all solve_all_networks snakemake --cores all solve_all_networks

View File

@ -6,11 +6,9 @@ name: pypsa-eur
channels: channels:
- conda-forge - conda-forge
- bioconda - bioconda
- http://conda.anaconda.org/gurobi
dependencies: dependencies:
- python>=3.8 - python>=3.8
- pip - pip
- mamba # esp for windows build
- pypsa>=0.18 - pypsa>=0.18
- atlite>=0.2.5 - atlite>=0.2.5