Skip to content

Commit 2af5591

Browse files
committed
Update CI configurations to create release on aarch64.
1 parent 7c769f2 commit 2af5591

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.github/workflows/linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
CC=${{matrix.compiler}}
2626
CONFIGURATION=${{matrix.configuration}}
2727
ARCH=${{matrix.platform}}
28+
TARGETARCH=${{matrix.platform}}
2829
if [[ "$CC" == "clang" ]]; then
2930
CFLAGS=-Werror
3031
CPPFLAGS=-Werror

.github/workflows/macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
configuration: ['release'] # 'debug'
1717
compiler: ['clang']
1818
platform: ['x64']
19-
2019
steps:
2120
- uses: actions/checkout@v2.3.4
2221
with:
@@ -27,6 +26,7 @@ jobs:
2726
CC=${{matrix.compiler}}
2827
CONFIGURATION=${{matrix.configuration}}
2928
ARCH=${{matrix.platform}}
29+
TARGETARCH=${{matrix.platform}}
3030
CPPFLAGS=-Werror
3131
CFLAGS=-Werror
3232
CXXFLAGS=-Werror

.github/workflows/release-linux.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
configuration: ['release']
1616
compiler: ['gcc']
1717
platform: ['x64']
18+
targetPlatform: ['x64']
1819
steps:
1920
- name: Checkout code
2021
uses: actions/checkout@v2
@@ -28,6 +29,7 @@ jobs:
2829
export CC=${{matrix.compiler}}
2930
export CONFIGURATION=${{matrix.configuration}}
3031
export ARCH=${{matrix.platform}}
32+
export TARGETARCH=${{matrix.targetPlatform}}
3133
echo "building..."
3234
source ./github_build.sh
3335
echo "creating binary archieves..."

.github/workflows/release-macos.yml

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
configuration: ['release'] # 'debug'
1616
compiler: ['clang']
1717
platform: ['x64']
18+
targetPlatform: ['x64', 'aarch64']
1819
steps:
1920
- name: "Import signing certificate"
2021
env:
@@ -57,6 +58,7 @@ jobs:
5758
export CC=${{matrix.compiler}}
5859
export CONFIGURATION=${{matrix.configuration}}
5960
export ARCH=${{matrix.platform}}
61+
export TARGETARCH=${{matrix.targetPlatform}}
6062
echo "building..."
6163
source ./github_macos_build.sh
6264
- name: Sign binaries

.github/workflows/release-windows.yml

+7-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
configuration: ['Release']
16-
platform: ['Win32', 'x64']
16+
platform: ['Win32', 'x64', 'aarch64']
1717
steps:
1818
- uses: actions/checkout@v2.3.4
1919
with:
@@ -22,17 +22,18 @@ jobs:
2222
- name: setup-msbuild
2323
uses: microsoft/setup-msbuild@v1
2424

25-
# If we are building for aarch64 we want to build x64 first, so that all generated files are produced
2625
- name: msbuild (x64 tools)
26+
# If we are building for ARM64 we want to build x64 first, so that all generated files are produced
2727
if: ${{ matrix.platform == 'aarch64' }}
2828
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
3030
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
3232
# Do the premake for the actual target, downloading dependencies if necessary
3333
- name: premake
34+
if: ${{ matrix.platform != 'aarch64' }}
3435
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
3637
- name: msbuild
3738
run:
3839
MSBuild.exe slang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0
@@ -42,7 +43,7 @@ jobs:
4243
echo "achiving files..."
4344
if ("${{matrix.platform}}" -eq "aarch64")
4445
{
45-
$slangDeployPlatform = "win-aarch64"
46+
$slangDeployPlatform = "win-arm64"
4647
}
4748
elseif ("${{matrix.platform}}" -eq "x64")
4849
{

.github/workflows/windows.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,9 @@ jobs:
2222
fetch-depth: '0'
2323
- name: setup-msbuild
2424
uses: microsoft/setup-msbuild@v1
25-
26-
- name: premake
27-
run:
28-
.\premake.bat vs2017 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true --no-progress=true
2925
- name: build
30-
run:
26+
run: |
27+
.\premake.bat vs2019 --enable-embed-stdlib=true --arch=${{matrix.platform}} --deps=true --no-progress=true
3128
MSBuild.exe slang.sln -v:m -m -property:Configuration=${{matrix.configuration}} -property:Platform=${{matrix.platform}} -property:WindowsTargetPlatformVersion=10.0.19041.0 -warnAsError
3229
- uses: actions/upload-artifact@v3
3330
with:

0 commit comments

Comments
 (0)