We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eec390d commit 35b007eCopy full SHA for 35b007e
.github/workflows/msbuild.yml
@@ -54,7 +54,10 @@ jobs:
54
run: echo "DOWNLOAD_URL=https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_24.10/arm-performance-libraries_24.10_Windows.msi" >> $GITHUB_ENV
55
56
- name: Download ARM Performance Libraries (APL)
57
- run: curl -L -o "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" ${{ env.DOWNLOAD_URL }}
+ run: |
58
+ echo ${{ env.DOWNLOADS_DIR }}
59
+ echo ${{ env.DOWNLOAD_URL }}
60
+ curl -L -o "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" ${{ env.DOWNLOAD_URL }}
61
62
- name: Install ARM Performance Libraries (APL)
63
run: msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"
0 commit comments