From 76fe0a1dcc73af87846bf27932716188d68d37f0 Mon Sep 17 00:00:00 2001 From: Yong He Date: Thu, 20 Jul 2023 12:50:21 -0700 Subject: Add linux arm64 self-hosted CI. (#3003) * Add linux arm64 self-hosted CI. * Update CI build script. * fix * Ignore test if FileCheck not found. --------- Co-authored-by: Yong He --- github_build.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'github_build.sh') diff --git a/github_build.sh b/github_build.sh index b9c0f24da..357989ccc 100644 --- a/github_build.sh +++ b/github_build.sh @@ -1,6 +1,10 @@ #!/usr/bin/env bash # Get premake +if [[ "aarch64" == "${ARCH}" ]]; then +wget https://github.com/shader-slang/slang-binaries/blob/master/premake/premake-5.0.0-alpha16/bin/linux-arm64/premake5?raw=true -O premake5 +else wget https://github.com/shader-slang/slang-binaries/blob/master/premake/premake-5.0.0-alpha16/bin/linux-64/premake5?raw=true -O premake5 +fi chmod u+x premake5 # generate slang-tag-version.h -- cgit v1.2.3