File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -54,19 +54,28 @@ jobs:
54
54
55
55
- name : Download ARM Performance Libraries (APL)
56
56
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}}
59
61
60
62
- 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 }}"
62
67
63
68
- name : Check installation success
64
69
shell : cmd
65
70
run : |
71
+ DOWNLOADS_DIR: ${{ runner.temp }}/downloads
72
+ DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies
66
73
if %errorlevel% neq 0 (
67
74
echo "Failed to install ARM Performance Libraries (APL) components. (exitcode = %errorlevel%)"
68
75
exit /b 1
69
76
)
77
+ ls ${{DOWNLOADS_DIR}}
78
+ ls ${{DEPENDENCIES_DIR}}
70
79
71
80
- name : Add to environment
72
81
run : |
You can’t perform that action at this time.
0 commit comments