Skip to content

Commit

Permalink
Merge branch 'main' into ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo authored Jan 27, 2025
2 parents bb9d43a + 828536c commit 0006256
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,19 @@ jobs:
- run:
name: Test CuBIDS
command: |
export MINICONDA=/tmp/miniconda
export PATH="$MINICONDA/bin:$PATH"
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O /tmp/miniconda.sh
bash /tmp/miniconda.sh -b -f -p $MINICONDA
conda config --set always_yes yes
conda update conda
conda info -a
export MINIFORGE=/tmp/miniforge
export PATH="$MINIFORGE/bin:$PATH"
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh -O /tmp/miniforge.sh
bash /tmp/miniforge.sh -b -f -p $MINIFORGE
mamba update mamba
export PATH=/tmp/miniconda/bin:$PATH
conda create -n cubids python=<< parameters.python_version >> pip
export PATH=/tmp/miniforge/bin:$PATH
mamba create -n cubids python=<< parameters.python_version >> pip
source activate cubids
conda install -c conda-forge -y datalad
mamba install -c conda-forge -y datalad
# Add deno to run the schema validator
conda install deno
mamba install -y deno
# Install CuBIDS
pip install -e .[tests]
Expand Down

0 comments on commit 0006256

Please sign in to comment.