Skip to content

Commit a6463be

Browse files
committed
test si way of installing datalad
1 parent ef53e4c commit a6463be

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/io-test.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
# restore-key hits should result in `cache-hit` == 'false'
7777
#if: steps.cache-conda-env.outputs.cache-hit != 'true'
7878
run: |
79-
conda install datalad pip numpy=${{ matrix.numpy-version }} -c conda-forge
79+
conda install pip numpy=${{ matrix.numpy-version }} -c conda-forge
8080
# this command is for updating cache. We are resting removal.
8181
# conda env update --name neo-test-env-${{ matrix.python-version }} --file environment_testing.yml --prune
8282

@@ -85,6 +85,20 @@ jobs:
8585
git config --global user.email "neo_ci@fake_mail.com"
8686
git config --global user.name "neo CI"
8787
88+
- name: Install git-annex
89+
shell: bash
90+
run: |
91+
pip install datalad-installer
92+
wget https://downloads.kitenet.net/git-annex/linux/current/git-annex-standalone-amd64.tar.gz
93+
mkdir /home/runner/work/installation
94+
mv git-annex-standalone-amd64.tar.gz /home/runner/work/installation/
95+
workdir=$(pwd)
96+
cd /home/runner/work/installation
97+
tar xvzf git-annex-standalone-amd64.tar.gz
98+
echo "$(pwd)/git-annex.linux" >> $GITHUB_PATH
99+
cd $workdir
100+
git config --global filter.annex.process "git-annex filter-process" # recommended for efficiency
101+
88102
- name: Python version
89103
run: |
90104
which python

0 commit comments

Comments
 (0)