Skip to content

Commit b9970ed

Browse files
authored
Update msbuild.yml
1 parent 0b39f15 commit b9970ed

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/msbuild.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ env:
2020
# You can convert this to a build matrix if you need coverage of multiple configuration types.
2121
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
2222
BUILD_CONFIGURATION: Debug
23-
24-
GITHUB_ENV: ${{github.env}}"
25-
GITHUB_PATH: ${{github.path}}"
2623

2724
#Set download URL for ARM Performance Libraries (APL)
2825
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:
5653
mkdir -p ${{ runner.temp }}/dependencies
5754
5855
- 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}}
6059
6160
- name: Install ARM Performance Libraries (APL)
6261
run: msiexec /i "${{ env.DOWNLOADS_DIR }}/arm-performance-libraries.msi" /qn /norestart ACCEPT_EULA=1 INSTALLFOLDER="${{ env.DEPENDENCIES_DIR }}"
6362

6463
- name: Check installation success
64+
shell: cmd
6565
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+
)
7070
7171
- name: Add to environment
7272
run: |

0 commit comments

Comments
 (0)