Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Checkout Chaste
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Chaste/Chaste
path: Chaste
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-boost.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-hdf5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-petsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-sundials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-vtk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-xercesc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-xsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set env
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-portability-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
XSD=${{ github.event.inputs.xsd_ver }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-portability-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/portability-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout Chaste/${{ github.event.inputs.chaste_branch }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Chaste/Chaste
ref: ${{ github.event.inputs.chaste_branch }}
Expand Down
1 change: 1 addition & 0 deletions scripts/custom/install_boost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ setenv BOOST_DIR ${install_dir}

prepend-path LIBRARY_PATH ${install_dir}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/lib

prepend-path INCLUDE ${install_dir}/include
Expand Down
1 change: 1 addition & 0 deletions scripts/custom/install_hdf5.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ prepend-path PATH ${install_dir}/bin

prepend-path LIBRARY_PATH ${install_dir}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/lib

prepend-path INCLUDE ${install_dir}/include
Expand Down
1 change: 1 addition & 0 deletions scripts/custom/install_petsc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ prepend-path PATH ${install_dir}/${arch}/bin

prepend-path LIBRARY_PATH ${install_dir}/${arch}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/${arch}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/${arch}/lib

prepend-path INCLUDE ${install_dir}/${arch}/include
Expand Down
4 changes: 4 additions & 0 deletions scripts/custom/install_sundials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ if version_lt "${version}" '3.1'; then # Sundials < 3.1.x
exit 1
fi

# Check for cmake
cmake --version

# Download and extract source
mkdir -p ${base_dir}/src/sundials
cd ${base_dir}/src/sundials
Expand Down Expand Up @@ -108,6 +111,7 @@ setenv SUNDIALS_ROOT ${install_dir}

prepend-path LIBRARY_PATH ${install_dir}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/lib

prepend-path INCLUDE ${install_dir}/include
Expand Down
4 changes: 4 additions & 0 deletions scripts/custom/install_vtk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ if version_lt "${version}" '6.3'; then # VTK < 6.3.x
exit 1
fi

# Check for cmake
cmake --version

# Download and extract source
mkdir -p ${base_dir}/src/vtk
cd ${base_dir}/src/vtk
Expand Down Expand Up @@ -261,6 +264,7 @@ setenv VTK_ROOT ${install_dir}

prepend-path LIBRARY_PATH ${install_dir}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/lib

prepend-path INCLUDE ${install_dir}/include/vtk-${major}.${minor}
Expand Down
1 change: 1 addition & 0 deletions scripts/custom/install_xercesc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ setenv XERCESC_LIBRARY ${install_dir}/lib

prepend-path LIBRARY_PATH ${install_dir}/lib
prepend-path LD_LIBRARY_PATH ${install_dir}/lib
prepend-path DYLD_LIBRARY_PATH ${install_dir}/lib
prepend-path LD_RUN_PATH ${install_dir}/lib

prepend-path INCLUDE ${install_dir}/include
Expand Down
Loading