Skip to content

Commit

Permalink
Merge pull request #381 from ohearnk/github-workflow-optimizations
Browse files Browse the repository at this point in the history
Github CI Workflow Optimizations
  • Loading branch information
agoetz authored Oct 24, 2024
2 parents 5fcbca7 + bf538c1 commit 95ab96f
Show file tree
Hide file tree
Showing 8 changed files with 995 additions and 859 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build_test_serial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
- name: 'Install Dependencies for Serial Version'
run: |
sudo apt-get update
sudo apt-get -y install gfortran
sudo apt-get -y install gfortran parallel
- 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"
echo "PARALLEL_TEST_COUNT=2" >> "$GITHUB_ENV"
- name: 'Run Tests for Serial Version (Make)'
run: make fulltest
- name: 'Archive Test Results for Serial Version'
Expand All @@ -45,7 +46,7 @@ jobs:
- name: 'Install Dependencies for Serial Version (CMake)'
run: |
sudo apt-get update
sudo apt-get -y install gfortran cmake
sudo apt-get -y install gfortran cmake parallel
- name: 'Configure Serial Version (CMake)'
run: |
mkdir build
Expand All @@ -59,6 +60,7 @@ jobs:
- name: 'Setup Environment Variables for Running Tests'
run: |
echo "QUICK_HOME=$PWD/install" >> "$GITHUB_ENV"
echo "PARALLEL_TEST_COUNT=2" >> "$GITHUB_ENV"
- name: 'Run Tests for Serial Version'
run: |
cd install
Expand Down
342 changes: 173 additions & 169 deletions test/testlist_full.txt

Large diffs are not rendered by default.

169 changes: 0 additions & 169 deletions test/testlist_full_cuda.txt

This file was deleted.

Loading

0 comments on commit 95ab96f

Please sign in to comment.