<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to install oneMKL in GitHub Actions? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484548#M34567</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Oof, turned out the culprit was the environment variable&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="notranslate"&gt;QT_QPA_PLATFORM="offscreen"&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;(which I had omitted in my example and therefore was not able to reproduce the issue)&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2023 16:05:38 GMT</pubDate>
    <dc:creator>hmenke</dc:creator>
    <dc:date>2023-05-09T16:05:38Z</dc:date>
    <item>
      <title>How to install oneMKL in GitHub Actions?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484444#M34564</link>
      <description>&lt;P&gt;I'm trying to use oneMKL in GitHub Actions and I have stumbled upon &lt;A href="https://github.com/oneapi-src/oneapi-ci" target="_self"&gt;https://github.com/oneapi-src/oneapi-ci&lt;/A&gt; which provides an example how to install DPCPP inside GitHub Actions. To this end I simply copied the script into my workflow file and essentially replaced &lt;CODE&gt;COMPONENTS=intel.oneapi.win.dpcpp-compiler&lt;/CODE&gt; with &lt;CODE&gt;COMPONENTS=intel.oneapi.win.mkl.devel:intel.oneapi.win.tbb.devel:intel.oneapi.win.dpl&lt;/CODE&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="yaml"&gt;name: oneMKL test

on: [ push ]

jobs:
  build:
    runs-on: windows-2019
    steps:
      # https://github.com/oneapi-src/oneapi-ci/blob/master/scripts/install_windows.bat
      - name: Install Intel oneAPI Math Kernel Library (oneMKL)
        shell: cmd
        run: |
           on
          REM SPDX-FileCopyrightText: 2022 Intel Corporation
          REM
          REM SPDX-License-Identifier: MIT
          set URL=https:/registrationcenter-download.intel.com/akdlm/IRC_NAS/c961e083-5685-4f0b-ada5-c6cf16f561dd/w_BaseKit_p_2023.1.0.47256_offline.exe
          set COMPONENTS=intel.oneapi.win.mkl.devel:intel.oneapi.win.tbb.devel:intel.oneapi.win.dpl
          curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5
          start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log
          del %TEMP%\webimage.exe
          webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=.
          set installer_exit_code=%ERRORLEVEL%
          rd /s/q "webimage_extracted"
          exit /b %installer_exit_code%&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, the installer never finished. &lt;CODE&gt;bootstrapper.exe&lt;/CODE&gt; just sits there for multiple hours without any output until GitHub kills the run. Can you please tell me what I'm doing wrong?&lt;/P&gt;
&lt;P&gt;I've also reported this as an issue on the oneapi-ci repo: &lt;A href="https://github.com/oneapi-src/oneapi-ci/issues/71" target="_blank"&gt;https://github.com/oneapi-src/oneapi-ci/issues/71&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 15:50:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484444#M34564</guid>
      <dc:creator>hmenke</dc:creator>
      <dc:date>2023-05-09T15:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to install oneMKL in GitHub Actions?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484548#M34567</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Oof, turned out the culprit was the environment variable&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="notranslate"&gt;QT_QPA_PLATFORM="offscreen"&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;(which I had omitted in my example and therefore was not able to reproduce the issue)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 16:05:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484548#M34567</guid>
      <dc:creator>hmenke</dc:creator>
      <dc:date>2023-05-09T16:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to install oneMKL in GitHub Actions?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484626#M34568</link>
      <description>&lt;P&gt;Thank you so much for reaching Intel and for sharing the solution for your issue. The oneMKL users will benefit from your contribution.&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 19:23:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484626#M34568</guid>
      <dc:creator>George_Silva_Intel</dc:creator>
      <dc:date>2023-05-09T19:23:12Z</dc:date>
    </item>
    <item>
      <title>Re:How to install oneMKL in GitHub Actions?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484750#M34573</link>
      <description>&lt;P&gt;Hi Henri,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting in Intel communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know your issue is resolved. Thanks for sharing the solution with us. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Praneeth Achanta&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 10 May 2023 05:15:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-install-oneMKL-in-GitHub-Actions/m-p/1484750#M34573</guid>
      <dc:creator>PraneethA_Intel</dc:creator>
      <dc:date>2023-05-10T05:15:30Z</dc:date>
    </item>
  </channel>
</rss>

