Skip to content

Commit

Permalink
Remove unused code and add VERBOSE build to nvhpc ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherwharrop-noaa committed Aug 9, 2024
1 parent b359aa5 commit 3eebba1
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions .github/workflows/linux_nvhpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@ jobs:
# Run on ubuntu-latest
runs-on: ubuntu-latest

env:
NVIDIA_HPC_SDK_URL1: https://developer.download.nvidia.com/hpc-sdk/21.9/nvhpc-21-9_21.9_amd64.deb
NVIDIA_HPC_SDK_URL2: https://developer.download.nvidia.com/hpc-sdk/21.9/nvhpc-2021_21.9_amd64.deb

steps:

# Install Lmod
Expand All @@ -34,12 +30,6 @@ jobs:
source /usr/share/lmod/lmod/init/bash
module list
# Install NVIDIA HPC SDK
#- name: Install NVIDIA HPC SDK
# run: |
# wget "$NVIDIA_HPC_SDK_URL1" "$NVIDIA_HPC_SDK_URL2"
# sudo apt-get install ./nvhpc-21-9_21.9_amd64.deb ./nvhpc-2021_21.9_amd64.deb

# Install NVIDIA HPC SDK
- name: Install NVIDIA HPC SDK
run: |
Expand Down Expand Up @@ -73,7 +63,7 @@ jobs:
cd build
#export OMP_NUM_THREADS=4
cmake -DCMAKE_BUILD_TYPE=debug -DENABLE_GPU=off ..
make
make VERBOSE=1
ctest --output-on-failure
# Test release mode
Expand All @@ -88,5 +78,5 @@ jobs:
cd build
#export OMP_NUM_THREADS=4
cmake -DCMAKE_BUILD_TYPE=release -DENABLE_GPU=off ..
make
make VERBOSE=1
ctest --output-on-failure

0 comments on commit 3eebba1

Please sign in to comment.