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
12 changes: 9 additions & 3 deletions .github/workflows/full-mpich.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ jobs:
fi
echo "staging-dir=${{ github.workspace }}/install_staging" >> $GITHUB_OUTPUT

- name: CPU info
run: lscpu

- name: Extract PETSc and runner info
id: petsc-info
run: |
Expand All @@ -88,8 +91,8 @@ jobs:
uses: actions/cache@v4
with:
path: |
${{ steps.petsc-info.outputs.home }}/freefem/ff-petsc
key: petsc-${{ github.workflow }}-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}
${{ env.INSTALL_DIR }}/ff-petsc
key: "petsc-Full version MPICH-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}"

- name: Configure
run: |
Expand Down Expand Up @@ -187,6 +190,9 @@ jobs:
- name: Symlink gfortran
run: ./etc/actions/macos/link_fortran.sh "$(uname -p)"

- name: CPU info
run: system_profiler SPHardwareDataType

- name: Extract PETSc and runner info
id: petsc-info
run: |
Expand All @@ -201,7 +207,7 @@ jobs:
with:
path: |
${{ steps.petsc-info.outputs.home }}/freefem/ff-petsc
key: petsc-${{ github.workflow }}-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}
key: "petsc-Full version MPICH-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}"

- name: Configure
run: |
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/full-msmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ jobs:
echo "configure-flags=--enable-optim --enable-generic" >> $GITHUB_OUTPUT
fi

- name: CPU info
shell: pwsh
run: systeminfo

- name: Extract PETSc and runner info
id: petsc-info
run: |
Expand All @@ -120,7 +124,7 @@ jobs:
with:
path: |
${{ steps.petsc-info.outputs.win_home }}/freefem/ff-petsc
key: petsc-${{ github.workflow }}-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}
key: "petsc-Full version MS-MPI-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}"

- name: Configure
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/full-openmpi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ jobs:
fi
echo "staging-dir=${{ github.workspace }}/install_staging" >> $GITHUB_OUTPUT

- name: CPU info
run: lscpu

- name: Extract PETSc and runner info
id: petsc-info
run: |
Expand All @@ -85,8 +88,8 @@ jobs:
uses: actions/cache@v4
with:
path: |
${{ steps.petsc-info.outputs.home }}/freefem/ff-petsc
key: petsc-${{ github.workflow }}-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}
${{ env.INSTALL_DIR }}/ff-petsc
key: "petsc-Full version Open MPI-${{ steps.petsc-info.outputs.image }}-${{ matrix.cfg.opts }}-${{ steps.petsc-info.outputs.version }}-${{ hashFiles('3rdparty/ff-petsc/Makefile') }}"

- name: Configure
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/release_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
name: Ubuntu ${{ matrix.version }} - Check .deb
runs-on: ubuntu-${{ matrix.version }}
steps:
- name: CPU info
run: lscpu

- uses: actions/checkout@v4

- name: Download package
Expand Down Expand Up @@ -71,6 +74,9 @@ jobs:
shell: pwsh

steps:
- name: CPU info
run: systeminfo

- name: Setup MPI
uses: mpi4py/setup-mpi@v1
with:
Expand Down