Skip to content

Commit

Permalink
update CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
darioizzo committed Sep 28, 2024
1 parent bec7d45 commit fc7450f
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pykep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: bash tools/gha_linux_pykep.sh
- name: Upload to github pages 🚀
if: ${{ github.event_name == 'push' }}
uses: JamesIves/github-pages-deploy-action@v4
uses: JamesIves/github-pages-deploy-action@v4.6.6
with:
folder: doc/_build/html # The folder the action should deploy.
windows_pykep:
Expand Down
6 changes: 3 additions & 3 deletions tools/gha_linux_asan_debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge3.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
export PATH="$HOME/miniforge3/bin:$PATH"
bash miniforge3.sh -b -p $HOME/miniforge3
mamba env create -f kep3_devel.yml -q -p $deps_dir
source activate $deps_dir

Expand Down
6 changes: 3 additions & 3 deletions tools/gha_linux_coverage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge3.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
export PATH="$HOME/miniforge3/bin:$PATH"
bash miniforge3.sh -b -p $HOME/miniforge3
mamba env create -f kep3_devel.yml -q -p $deps_dir
source activate $deps_dir
mamba install lcov -y
Expand Down
6 changes: 3 additions & 3 deletions tools/gha_linux_pykep.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ set -e
sudo apt-get install wget

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-Linux-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge3.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
export PATH="$HOME/miniforge3/bin:$PATH"
bash miniforge3.sh -b -p $HOME/miniforge3
mamba env create -f kep3_devel.yml -q -p $deps_dir
source activate $deps_dir

Expand Down
6 changes: 3 additions & 3 deletions tools/gha_osx_debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ set -x
set -e

# Install conda+deps.
wget https://github.com/conda-forge/miniforge/releases/latest/download/Mambaforge-MacOSX-x86_64.sh -O mambaforge.sh
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O miniforge3.sh
export deps_dir=$HOME/local
export PATH="$HOME/mambaforge/bin:$PATH"
bash mambaforge.sh -b -p $HOME/mambaforge
export PATH="$HOME/miniforge3/bin:$PATH"
bash miniforge3.sh -b -p $HOME/miniforge3
mamba env create -f kep3_devel.yml -q -p $deps_dir
source activate $deps_dir

Expand Down

0 comments on commit fc7450f

Please sign in to comment.