Skip to content

Commit

Permalink
[pypi] typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fradav committed May 15, 2024
1 parent 0a7603c commit dc93d81
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,24 +91,24 @@ jobs:
uses: actions/cache@v2
with:
path: /opt/intel
key: ${{ env.mkl-version }}
key: ${{ env.MKL_VERSION }}
if: matrix.os == 'ubuntu-latest'
- name: setup x64-linux
run: |
if [ ! -d /opt/intel/lib/intel64 ]; then
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] 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 -y ${{ env.mkl-version }}
sudo apt-get install -y ${{ env.MKL_VERSION }}
fi
echo "CC=gcc-13" >> $GITHUB_ENV
echo "CXX=g++-13" >> $GITHUB_ENV
if: matrix.os == 'ubuntu-latest'
- name: setup MacOS
run: |
brew install ninja
echo "CC=gcc-13" >> $GITHUB_ENV
echo "CXX=g++-13" >> $GITHUB_ENV
echo "CC=gcc-12" >> $GITHUB_ENV
echo "CXX=g++-12" >> $GITHUB_ENV
echo "CXXFLAGS=-static-libstdc++ -static-libgcc" >> $GITHUB_ENV
if: matrix.os == 'macos-latest'
- name: Configure MSVC console (Windows)
Expand Down

0 comments on commit dc93d81

Please sign in to comment.