File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 20
20
# You can convert this to a build matrix if you need coverage of multiple configuration types.
21
21
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
22
22
BUILD_CONFIGURATION : Debug
23
-
24
- GITHUB_ENV : ${{github.env}}"
25
- GITHUB_PATH : ${{github.path}}"
26
23
27
24
# Set download URL for ARM Performance Libraries (APL)
28
25
DOWNLOAD_URL : " https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_24.10/arm-performance-libraries_24.10_Windows.msi"
@@ -56,17 +53,20 @@ jobs:
56
53
mkdir -p ${{ runner.temp }}/dependencies
57
54
58
55
- name : Download ARM Performance Libraries (APL)
59
- run : curl -L -o "${{env.DOWNLOADS_DIR}}/arm-performance-libraries.msi" ${{env.DOWNLOAD_URL}}
56
+ run : |
57
+ echo "Downloads directory is $DOWNLOADS_DIR"
58
+ curl -L -o "${{env.DOWNLOADS_DIR}}/arm-performance-libraries.msi" ${{env.DOWNLOAD_URL}}
60
59
61
60
- name : Install ARM Performance Libraries (APL)
62
61
run : msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"
63
62
64
63
- name : Check installation success
64
+ shell : cmd
65
65
run : |
66
- if (${{ env.ERRORLEVEL }} -ne 0) {
67
- echo "Failed to install ARM Performance Libraries (APL) components. (exitcode = ${{ env.ERRORLEVEL }} )"
68
- exit 1
69
- }
66
+ if %errorlevel% neq 0 (
67
+ echo "Failed to install ARM Performance Libraries (APL) components. (exitcode = %errorlevel% )"
68
+ exit /b 1
69
+ )
70
70
71
71
- name : Add to environment
72
72
run : |
You can’t perform that action at this time.
0 commit comments