forked from merzlab/QUICK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request merzlab#380 from ohearnk/github-tests-workflow-act…
…ion-artifact-updates Update Github CI workflows for CPU builds and tests
- Loading branch information
Showing
6 changed files
with
152 additions
and
148 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
name: 'Build and Test QUICK MPI Version' | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: | ||
build-and-test-mpi-legacy-configure-make: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Install Dependencies for MPI Version' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install gfortran openmpi-bin openmpi-common libopenmpi-dev | ||
- name: 'Configure MPI Version' | ||
run: ./configure --mpi --enablef --prefix $PWD/install gnu | ||
- name: 'Build and Install MPI Version Using 2 Jobs' | ||
run: make -j2 all install | ||
- name: 'Setup Environment Variables for Running Tests' | ||
run: | | ||
echo "DO_PARALLEL=mpirun -np 2" >> "$GITHUB_ENV" | ||
echo "QUICK_HOME=$PWD/install" >> "$GITHUB_ENV" | ||
- name: 'Run Tests for MPI Version (Make) Using 2 MPI Processes' | ||
run: make fulltest | ||
- name: 'Archive Test Results for MPI Version' | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'mpi-legacy-configure-make-tests' | ||
path: /home/runner/work/QUICK/QUICK/install/test/runs/mpi | ||
retention-days: 3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: 'mpi-legacy-configure-make-tests' | ||
- name: 'Display Artifacts' | ||
run: ls -R | ||
build-and-test-mpi-cmake: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Install Dependencies for MPI Version (CMake)' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install gfortran cmake openmpi-bin openmpi-common libopenmpi-dev | ||
- name: 'Configure MPI Version (CMake)' | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. -DCOMPILER=GNU -DMPI=TRUE -DENABLEF=TRUE -DCMAKE_INSTALL_PREFIX=$PWD/../install | ||
- name: 'Build and Install MPI Version (CMake) Using 2 Jobs' | ||
run: | | ||
cd build | ||
cmake --build . --parallel 2 | ||
cmake --install . | ||
- name: 'Setup Environment Variables for Running Tests' | ||
run: | | ||
echo "DO_PARALLEL=mpirun -np 2" >> "$GITHUB_ENV" | ||
echo "QUICK_HOME=$PWD/install" >> "$GITHUB_ENV" | ||
- name: 'Run Tests for MPI Version Using 2 MPI Processes' | ||
run: | | ||
cd install | ||
./runtest --mpi --full | ||
- name: 'Archive Test Results for MPI Version (CMake)' | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'mpi-cmake-tests' | ||
path: /home/runner/work/QUICK/QUICK/install/test/runs/mpi | ||
retention-days: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
name: 'Build and Test QUICK Serial Version' | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**.md' | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: | ||
build-and-test-serial-legacy-configure-make: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Install Dependencies for Serial Version' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install gfortran | ||
- name: 'Configure Serial Version' | ||
run: ./configure --serial --enablef --prefix $PWD/install gnu | ||
- name: 'Build and Install Serial Version Using 2 Jobs' | ||
run: make -j2 all install | ||
- name: 'Setup Environment Variables for Running Tests' | ||
run: | | ||
echo "QUICK_HOME=$PWD/install" >> "$GITHUB_ENV" | ||
- name: 'Run Tests for Serial Version (Make)' | ||
run: make fulltest | ||
- name: 'Archive Test Results for Serial Version' | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'serial-legacy-configure-make-tests' | ||
path: /home/runner/work/QUICK/QUICK/install/test/runs/serial | ||
retention-days: 3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: 'serial-legacy-configure-make-tests' | ||
- name: 'Display Artifacts' | ||
run: ls -R | ||
build-and-test-serial-cmake: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: 'Install Dependencies for Serial Version (CMake)' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get -y install gfortran cmake | ||
- name: 'Configure Serial Version (CMake)' | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. -DCOMPILER=GNU -DENABLEF=TRUE -DCMAKE_INSTALL_PREFIX=$PWD/../install | ||
- name: 'Build and Install Serial Version (CMake) Using 2 Jobs' | ||
run: | | ||
cd build | ||
cmake --build . --parallel 2 | ||
cmake --install . | ||
- name: 'Setup Environment Variables for Running Tests' | ||
run: | | ||
echo "QUICK_HOME=$PWD/install" >> "$GITHUB_ENV" | ||
- name: 'Run Tests for Serial Version' | ||
run: | | ||
cd install | ||
./runtest --serial --full | ||
- name: 'Archive Test Results for Serial Version (CMake)' | ||
if: always() | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'serial-cmake-tests' | ||
path: /home/runner/work/QUICK/QUICK/install/test/runs/serial | ||
retention-days: 3 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters