Jenkins: Forgot the Jenkinsfile for universal builds
This commit is contained in:
8
.ci/Jenkinsfile
vendored
8
.ci/Jenkinsfile
vendored
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user