Skip to content

Commit 532771f

Browse files
authored
[MAINT] update octave install for ubuntu 24.04 (#1336)
* update octave install for ubuntu 24.04 * update git config
1 parent c411e51 commit 532771f

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

.github/workflows/run_tests_cli.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
tests_cli:
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-latest
1616
if: github.repository_owner == 'cpp-lln-lab'
1717
strategy:
1818
fail-fast: false
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
sudo apt-get -y -qq update
25-
sudo apt-get -y install octave liboctave-dev
25+
sudo apt-get -y install octave octave-dev
2626
- name: Info
2727
run: octave --version
2828
- name: Install Deno
@@ -56,7 +56,7 @@ jobs:
5656
# fail_ci_if_error: false
5757

5858
boutiques:
59-
runs-on: ubuntu-22.04
59+
runs-on: ubuntu-latest
6060
if: github.repository_owner == 'cpp-lln-lab'
6161
steps:
6262
- name: Clone bidspm
@@ -82,6 +82,11 @@ jobs:
8282
python -m pip install --upgrade pip setuptools
8383
pip install datalad
8484
85+
- name: Post-install
86+
run: |
87+
git config --global --add user.name "Ford Escort"
88+
git config --global --add user.email [email protected]
89+
8590
- name: Get data
8691
run: |
8792
cd demos/openneuro/
@@ -94,7 +99,7 @@ jobs:
9499
sudo apt-get -y -qq update
95100
sudo apt-get -y install \
96101
octave \
97-
liboctave-dev\
102+
octave-dev\
98103
octave-common \
99104
octave-io \
100105
octave-image \

.github/workflows/run_tests_notebooks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# only trigger update on upstream repo
2222
if: github.repository_owner == 'cpp-lln-lab'
2323

24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-latest
2525

2626
steps:
2727
- name: Install dependencies

.github/workflows/tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,11 @@ jobs:
8585
unzip download
8686
mv moae_fmriprep fmriprep
8787
88+
- name: Post-install
89+
run: |
90+
git config --global --add user.name "Ford Escort"
91+
git config --global --add user.email [email protected]
92+
8893
- name: Get data for testing QA
8994
if: matrix.os == 'ubuntu-latest'
9095
run: |
@@ -175,6 +180,11 @@ jobs:
175180
unzip download
176181
mv moae_fmriprep fmriprep
177182
183+
- name: Post-install
184+
run: |
185+
git config --global --add user.name "Ford Escort"
186+
git config --global --add user.email [email protected]
187+
178188
- name: Get data for testing QA
179189
if: matrix.os == 'ubuntu-latest'
180190
run: |
@@ -274,6 +284,11 @@ jobs:
274284
unzip download
275285
mv moae_fmriprep fmriprep
276286
287+
- name: Post-install
288+
run: |
289+
git config --global --add user.name "Ford Escort"
290+
git config --global --add user.email [email protected]
291+
277292
- name: Prepare test data unix
278293
run: |
279294
cd tests

.github/workflows/tests_octave.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ jobs:
9999
unzip download
100100
mv moae_fmriprep fmriprep
101101
102+
- name: Post-install
103+
run: |
104+
git config --global --add user.name "Ford Escort"
105+
git config --global --add user.email [email protected]
106+
102107
- name: Get data for testing QA
103108
run: |
104109
cd demos/openneuro/
@@ -120,7 +125,7 @@ jobs:
120125
sudo apt-get -y -qq update
121126
sudo apt-get -y install \
122127
octave \
123-
liboctave-dev\
128+
octave-dev\
124129
octave-common \
125130
octave-io \
126131
octave-image \

0 commit comments

Comments
 (0)