Skip to content

Commit 79677c0

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

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

.github/workflows/msbuild.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@ env:
2121
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
2222
BUILD_CONFIGURATION: Debug
2323

24+
DOWNLOADS_DIR: ${{ runner.temp }}/downloads"
25+
DEPENDENCIES_DIR: ${{ runner.temp }}/dependencies"
26+
GITHUB_ENV: ${{ github.env }}"
27+
GITHUB_PATH: ${{ github.path }}"
28+
29+
#Set download URL for ARM Performance Libraries (APL)
30+
DOWNLOAD_URL: "https://developer.arm.com/-/cdn-downloads/permalink/Arm-Performance-Libraries/Version_24.10/arm-performance-libraries_24.10_Windows.msi"
31+
32+
2433
permissions:
2534
contents: read
2635

@@ -37,22 +46,12 @@ jobs:
3746
- name: Restore NuGet packages
3847
working-directory: ${{env.GITHUB_WORKSPACE}}
3948
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
40-
41-
- name: Set up environment variables
42-
run: |
43-
echo "DOWNLOADS_DIR=${{ runner.temp }}/downloads" >> $GITHUB_ENV
44-
echo "DEPENDENCIES_DIR=${{ runner.temp }}/dependencies" >> $GITHUB_ENV
45-
echo "GITHUB_ENV=${{ github.env }}" >> $GITHUB_ENV
46-
echo "GITHUB_PATH=${{ github.path }}" >> $GITHUB_ENV
47-
49+
4850
- name: Create directories
4951
run: |
5052
mkdir -p ${{ runner.temp }}/downloads
51-
mkdir -p ${{ runner.temp }}/dependencies
52-
53-
- name: Set download URL for ARM Performance Libraries (APL)
54-
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
55-
53+
mkdir -p ${{ runner.temp }}/dependencie
54+
5655
- name: Download ARM Performance Libraries (APL)
5756
run: |
5857
echo ${{ env.DOWNLOADS_DIR }}

0 commit comments

Comments
 (0)