Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs #772

Merged
merged 4 commits into from
Nov 20, 2024
Merged

Docs #772

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
38 changes: 24 additions & 14 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,32 @@ jobs:
shell: bash -l {0}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Mambaforge Python 3.7
uses: conda-incubator/setup-miniconda@v2
- name: Clean Ubuntu Image
uses: kfir4444/free-disk-space@main
with:
environment-file: environment.yml
miniforge-variant: Mambaforge
miniforge-version: latest
activate-environment: arc_env
python-version: 3.7
use-mamba: true
# This may remove tools actually needed - currently does not
tool-cache: true
android: true
dotnet: true
haskell: true
large-packages: true
swap-storage: true

- name: Update environment
run: |
mamba env update -n arc_env -f environment.yml
conda list
- name: Set up miniconda
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
environment-file: environment.yml
activate-environment: arc_env
miniconda-version: latest
conda-solver: libmamba

# - name: Update environment
# run: |
# conda env update -n arc_env -f environment.yml
# conda list

- name: Install LaTeX
run: |
Expand All @@ -40,7 +50,7 @@ jobs:


- name: Install codecov
run: mamba install -y -c conda-forge codecov
run: conda install --force-reinstall ld_impl_linux-64 -y && conda install -y -c conda-forge codecov

- name: Install dependencies
run: |
Expand Down
Loading