13
13
strategy :
14
14
matrix :
15
15
configuration : ['Release']
16
- platform : ['Win32', 'x64']
16
+ platform : ['Win32', 'x64', 'aarch64' ]
17
17
steps :
18
18
- uses : actions/checkout@v2.3.4
19
19
with :
@@ -22,17 +22,18 @@ jobs:
22
22
- name : setup-msbuild
23
23
uses : microsoft/setup-msbuild@v1
24
24
25
- # If we are building for aarch64 we want to build x64 first, so that all generated files are produced
26
25
- name : msbuild (x64 tools)
26
+ # If we are building for ARM64 we want to build x64 first, so that all generated files are produced
27
27
if : ${{ matrix.platform == 'aarch64' }}
28
28
run : |
29
- .\premake.bat vs2017 --arch=x64 --ignore-deps=slang-llvm,slang-glslang --no-progress=true
29
+ .\premake.bat vs2019 --arch=x64 --ignore-deps=slang-llvm,slang-glslang --no-progress=true
30
30
MSBuild.exe slang.sln -v:m -m -property:Configuration=Release -property:Platform=x64 -property:WindowsTargetPlatformVersion=10.0.19041.0
31
-
31
+ .\premake.bat vs2019 --arch=${{matrix.platform}} --ignore-deps=slang-llvm,slang-glslang --no-progress=true --skip-source-generation=true
32
32
# Do the premake for the actual target, downloading dependencies if necessary
33
33
- name : premake
34
+ if : ${{ matrix.platform != 'aarch64' }}
34
35
run :
35
- .\premake.bat vs2017 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true --no-progress=true
36
+ .\premake.bat vs2019 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true --no-progress=true
36
37
- name : msbuild
37
38
run :
38
39
MSBuild.exe slang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0
42
43
echo "achiving files..."
43
44
if ("${{matrix.platform}}" -eq "aarch64")
44
45
{
45
- $slangDeployPlatform = "win-aarch64 "
46
+ $slangDeployPlatform = "win-arm64 "
46
47
}
47
48
elseif ("${{matrix.platform}}" -eq "x64")
48
49
{
0 commit comments