-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix intel compiler version in github actions, and add IntelLLVM
- Loading branch information
1 parent
93082b9
commit 894755f
Showing
2 changed files
with
30 additions
and
7 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
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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
#!/bin/sh | ||
#!/usr/bin/env bash | ||
|
||
version=2023.2.0 | ||
KEY=GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | ||
wget https://apt.repos.intel.com/intel-gpg-keys/$KEY | ||
sudo apt-key add $KEY | ||
rm $KEY | ||
echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list | ||
sudo apt-get update | ||
sudo apt-get install \ | ||
intel-oneapi-compiler-fortran \ | ||
intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic \ | ||
intel-oneapi-compiler-fortran-$version \ | ||
intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic-$version \ | ||
intel-oneapi-mpi \ | ||
intel-oneapi-mpi-devel \ | ||
intel-oneapi-mkl | ||
intel-oneapi-mkl-$version |