Skip to content

Commit 89256e8

Browse files
authored
Merge pull request #141 from asmacdo/bump-ci-ubuntu
test: replace ubuntu-20.04 with ubuntu-latest and install/use datalad etc from pypi not neurodebian
2 parents cc1f02a + 85d3eb6 commit 89256e8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/base-tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os:
1414
- macos-latest
15-
- ubuntu-20.04
15+
- ubuntu-latest
1616
steps:
1717
- name: Check out repository
1818
uses: actions/checkout@v4
@@ -21,10 +21,10 @@ jobs:
2121
if: startsWith(matrix.os, 'ubuntu')
2222
run: |
2323
# So we get all backports etc
24-
bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
24+
# bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
2525
sudo apt-get update -qq
2626
sudo apt-get install eatmydata # to speedup some installations
27-
sudo eatmydata apt-get install singularity-container shellcheck bats git-annex-standalone
27+
sudo eatmydata apt-get install singularity-container shellcheck bats git-annex
2828
2929
- name: Install dependencies (macOS)
3030
if: startsWith(matrix.os, 'macos')

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ on:
88

99
jobs:
1010
tests:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1212
strategy:
1313
fail-fast: false
1414
steps:
1515
- name: Set up system
1616
shell: bash
1717
run: |
18-
bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
18+
# bash <(wget -q -O- http://neuro.debian.net/_files/neurodebian-travis.sh)
1919
sudo apt-get update -qq
2020
sudo apt-get install eatmydata
21-
sudo eatmydata apt-get install singularity-container gnupg moreutils strace
22-
sudo eatmydata apt-get install datalad datalad-container
21+
sudo eatmydata apt-get install singularity-container gnupg moreutils strace git-annex
22+
pip install datalad datalad-container
2323
git config --global user.email "[email protected]"
2424
git config --global user.name "CI Almighty"
2525

0 commit comments

Comments
 (0)