21
21
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
22
22
BUILD_CONFIGURATION : Debug
23
23
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
+
24
33
permissions :
25
34
contents : read
26
35
@@ -37,22 +46,12 @@ jobs:
37
46
- name : Restore NuGet packages
38
47
working-directory : ${{env.GITHUB_WORKSPACE}}
39
48
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
+
48
50
- name : Create directories
49
51
run : |
50
52
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
+
56
55
- name : Download ARM Performance Libraries (APL)
57
56
run : |
58
57
echo ${{ env.DOWNLOADS_DIR }}
0 commit comments