Jenkins: Forgot the Jenkinsfile for universal builds

This commit is contained in:
RichardG867
2022-05-01 18:17:59 -03:00
parent 97b5d2de7a
commit 34bdb870af

8
.ci/Jenkinsfile vendored
View File

@@ -25,7 +25,7 @@ def buildBranch = env.JOB_BASE_NAME.contains('-') ? 1 : 0
def osArchs = [
'Windows': ['32', '64'],
'Linux': ['x86', 'x86_64', 'arm32', 'arm64'],
'macOS': ['x86_64']
'macOS': ['x86_64+arm64']
]
def osFlags = [
@@ -45,7 +45,8 @@ def archNames = [
def archNamesMac = [
'x86_64': 'Intel',
'arm64': 'Apple Silicon'
'arm64': 'Apple Silicon',
'x86_64+arm64': 'Universal (Intel and Apple Silicon)'
]
def dynarecNames = [
@@ -60,7 +61,8 @@ def dynarecArchs = [
'64': ['ODR', 'NDR'],
'x86_64': ['ODR', 'NDR'],
'arm32': ['NDR'],
'arm64': ['NDR']
'arm64': ['NDR'],
'x86_64+arm64': ['ODR', 'NDR']
]
def dynarecFlags = [