Skip to content

Commit

Permalink
Merge pull request #51 from bluescarni/pr/small_updates
Browse files Browse the repository at this point in the history
CI updates
  • Loading branch information
bluescarni authored Mar 4, 2023
2 parents 990eca1 + 92a20e0 commit e78054b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tools/gha_conda_asan.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/download/22.9.0-3/Mambaforge-22.9.0-3-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
Expand Down
2 changes: 1 addition & 1 deletion tools/gha_conda_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/download/22.9.0-3/Mambaforge-22.9.0-3-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
Expand Down
2 changes: 1 addition & 1 deletion tools/gha_conda_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -x
set -e

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/download/22.9.0-3/Mambaforge-22.9.0-3-MacOSX-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh -O mambaforge.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
Expand Down
4 changes: 2 additions & 2 deletions tools/gha_deploydocs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/download/22.9.0-3/Mambaforge-22.9.0-3-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
Expand All @@ -19,7 +19,7 @@ mamba env create -f cascade_devel.yml -q -p $deps_dir
source activate $deps_dir
# NOTE: do some explicit version pinning here, as the interdeps
# between several sphinx packages are **very** fragile.
mamba install sphinx='4.5.*' myst-nb='0.17.*' sphinx-book-theme='0.3.*' sphinx-design matplotlib pykep sgp4
mamba install sphinx='5.3.*' myst-nb='0.17.*' sphinx-book-theme='1.0.*' sphinx-design matplotlib pykep sgp4

# Create the build dir and cd into it.
mkdir build
Expand Down

0 comments on commit e78054b

Please sign in to comment.