Skip to content

Commit

Permalink
[MAINT] update octave install for ubuntu 24.04 (#1336)
Browse files Browse the repository at this point in the history
* update octave install for ubuntu 24.04

* update git config
  • Loading branch information
Remi-Gau authored Jan 10, 2025
1 parent c411e51 commit 532771f
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 6 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/run_tests_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
tests_cli:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: github.repository_owner == 'cpp-lln-lab'
strategy:
fail-fast: false
Expand All @@ -22,7 +22,7 @@ jobs:
- name: Install dependencies
run: |
sudo apt-get -y -qq update
sudo apt-get -y install octave liboctave-dev
sudo apt-get -y install octave octave-dev
- name: Info
run: octave --version
- name: Install Deno
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
# fail_ci_if_error: false

boutiques:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
if: github.repository_owner == 'cpp-lln-lab'
steps:
- name: Clone bidspm
Expand All @@ -82,6 +82,11 @@ jobs:
python -m pip install --upgrade pip setuptools
pip install datalad
- name: Post-install
run: |
git config --global --add user.name "Ford Escort"
git config --global --add user.email 42@H2G2.com
- name: Get data
run: |
cd demos/openneuro/
Expand All @@ -94,7 +99,7 @@ jobs:
sudo apt-get -y -qq update
sudo apt-get -y install \
octave \
liboctave-dev\
octave-dev\
octave-common \
octave-io \
octave-image \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run_tests_notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# only trigger update on upstream repo
if: github.repository_owner == 'cpp-lln-lab'

runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- name: Install dependencies
Expand Down
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ jobs:
unzip download
mv moae_fmriprep fmriprep
- name: Post-install
run: |
git config --global --add user.name "Ford Escort"
git config --global --add user.email 42@H2G2.com
- name: Get data for testing QA
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -175,6 +180,11 @@ jobs:
unzip download
mv moae_fmriprep fmriprep
- name: Post-install
run: |
git config --global --add user.name "Ford Escort"
git config --global --add user.email 42@H2G2.com
- name: Get data for testing QA
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down Expand Up @@ -274,6 +284,11 @@ jobs:
unzip download
mv moae_fmriprep fmriprep
- name: Post-install
run: |
git config --global --add user.name "Ford Escort"
git config --global --add user.email 42@H2G2.com
- name: Prepare test data unix
run: |
cd tests
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/tests_octave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,11 @@ jobs:
unzip download
mv moae_fmriprep fmriprep
- name: Post-install
run: |
git config --global --add user.name "Ford Escort"
git config --global --add user.email 42@H2G2.com
- name: Get data for testing QA
run: |
cd demos/openneuro/
Expand All @@ -120,7 +125,7 @@ jobs:
sudo apt-get -y -qq update
sudo apt-get -y install \
octave \
liboctave-dev\
octave-dev\
octave-common \
octave-io \
octave-image \
Expand Down

0 comments on commit 532771f

Please sign in to comment.