Skip to content

Commit 3eb0ce6

Browse files
authored
Update msbuild.yml
1 parent b9970ed commit 3eb0ce6

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/msbuild.yml

+12-3
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,28 @@ jobs:
5454
5555
- name: Download ARM Performance Libraries (APL)
5656
run: |
57-
echo "Downloads directory is $DOWNLOADS_DIR"
58-
curl -L -o "${{env.DOWNLOADS_DIR}}/arm-performance-libraries.msi" ${{env.DOWNLOAD_URL}}
57+
DOWNLOADS_DIR: ${{ runner.temp }}/downloads
58+
DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies
59+
echo "Downloads directory is ${{DOWNLOADS_DIR}}"
60+
curl -L -o "${{DOWNLOADS_DIR}}/arm-performance-libraries.msi" ${{env.DOWNLOAD_URL}}
5961
6062
- name: Install ARM Performance Libraries (APL)
61-
run: msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"
63+
run: |
64+
DOWNLOADS_DIR: ${{ runner.temp }}/downloads
65+
DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies
66+
msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"
6267
6368
- name: Check installation success
6469
shell: cmd
6570
run: |
71+
DOWNLOADS_DIR: ${{ runner.temp }}/downloads
72+
DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies
6673
if %errorlevel% neq 0 (
6774
echo "Failed to install ARM Performance Libraries (APL) components. (exitcode = %errorlevel%)"
6875
exit /b 1
6976
)
77+
ls ${{DOWNLOADS_DIR}}
78+
ls ${{DEPENDENCIES_DIR}}
7079
7180
- name: Add to environment
7281
run: |

0 commit comments

Comments
 (0)