Skip to content

Commit 35b007e

Browse files
authored
Update msbuild.yml
1 parent eec390d commit 35b007e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/msbuild.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,10 @@ jobs:
5454
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
5555

5656
- name: Download ARM Performance Libraries (APL)
57-
run: curl -L -o "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" ${{ env.DOWNLOAD_URL }}
57+
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 }}
5861
5962
- name: Install ARM Performance Libraries (APL)
6063
run: msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"

0 commit comments

Comments
 (0)