summaryrefslogtreecommitdiffstats
path: root/.github/workflows/intel-auto.yml
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-10-18 19:44:42 (GMT)
committerGitHub <noreply@github.com>2023-10-18 19:44:42 (GMT)
commit65e1bd8ce90d286bd4ffc1575414d775ae86a319 (patch)
tree5aeb6bc35ab0b6e0d8fe29b56bd9141c4f69bca3 /.github/workflows/intel-auto.yml
parentfce7ce18697ecead37e75d3d05483ef995cf24dd (diff)
downloadhdf5-65e1bd8ce90d286bd4ffc1575414d775ae86a319.zip
hdf5-65e1bd8ce90d286bd4ffc1575414d775ae86a319.tar.gz
hdf5-65e1bd8ce90d286bd4ffc1575414d775ae86a319.tar.bz2
Add NVidia compiler support and CI (#3686)
Diffstat (limited to '.github/workflows/intel-auto.yml')
-rw-r--r--.github/workflows/intel-auto.yml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/intel-auto.yml b/.github/workflows/intel-auto.yml
index f5249bd..d63262f 100644
--- a/.github/workflows/intel-auto.yml
+++ b/.github/workflows/intel-auto.yml
@@ -13,14 +13,16 @@ permissions:
jobs:
Intel_build_and_test:
- name: "Intel ${{ inputs.build_mode }} -Werror (build only)"
+ name: "Intel ${{ inputs.build_mode }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
+
- name: Install Dependencies
- run: |
+ run: |
sudo apt-get update
sudo apt-get install autoconf automake libtool libtool-bin libaec-dev
+
- name: Add oneAPI to apt
shell: bash
run: |
@@ -39,9 +41,9 @@ jobs:
sudo apt install -y intel-oneapi-mpi-devel
sudo apt-get install doxygen graphviz
sudo apt install libssl3 libssl-dev libcurl4 libcurl4-openssl-dev
- echo "CC=icx" >> $GITHUB_ENV
- echo "CXX=icpx" >> $GITHUB_ENV
- echo "FC=ifx" >> $GITHUB_ENV
+ echo "CC=icx" >> $GITHUB_ENV
+ echo "CXX=icpx" >> $GITHUB_ENV
+ echo "FC=ifx" >> $GITHUB_ENV
- name: Install oneAPI MKL library
shell: bash