Skip to content
Snippets Groups Projects
Commit de0a0d71 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

updated arm64 support for building and CI/CD

parent 14d3f802
No related branches found
No related tags found
No related merge requests found
Pipeline #3346 failed
......@@ -43,13 +43,20 @@ stages:
# - centos75
# variables:
# OS: 'centos75'
#
#do-nightly-clean-arm32:
# <<: *do-nightly-clean
# tags:
# - arm32
# variables:
# OS: 'arm32'
do-nightly-clean-arm32:
do-nightly-clean-arm64:
<<: *do-nightly-clean
tags:
- arm32
- arm64
variables:
OS: 'arm32'
OS: 'arm64'
#
......@@ -83,13 +90,20 @@ do-nightly-clean-arm32:
# - centos75
# variables:
# OS: 'centos75'
#
#do-build-arm32:
# <<: *do-build
# tags:
# - arm32
# variables:
# OS: 'arm32'
do-build-arm32:
do-build-arm64:
<<: *do-build
tags:
- arm32
- arm64
variables:
OS: 'arm32'
OS: 'arm64'
#
......
......@@ -7,7 +7,7 @@ if [[ "$*" =~ "--debug" ]]; then
fi
if [[ $(uname -m) == 'armv7l' ]]; then
if [[ $(uname -m) == 'armv7l' ]] || [[ $(uname -m) == 'aarch64' ]]; then
scons $SCONSDEBUG
else
scons $SCONSDEBUG -j 3
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment