Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions vars/buildPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def call(Map addonParams = [:])
'osx-arm64': 'osx-arm64',
'tvos-aarch64': 'tvos',
'windows-i686': 'windows/win32',
'windows-x86_64': 'windows/x64'
'windows-x86_64': 'windows/x64',
'windows-arm64': 'windows/arm64',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep this map sorted

]

List<String> versionsKeys = new ArrayList<String>(VERSIONS_VALID.keySet());
Expand All @@ -41,14 +42,19 @@ def call(Map addonParams = [:])
{
PLATFORMS_VALID.remove('osx-arm64')
}
if (versionsKeys.indexOf(version) < versionsKeys.indexOf('Piers'))
{
PLATFORMS_VALID.remove('windows-arm64')
}

def PLATFORMS_DEPLOY = [
'android-armv7',
'android-aarch64',
'osx-x86_64',
'osx-arm64',
'windows-i686',
'windows-x86_64'
'windows-x86_64',
'windows-arm64'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep this list sorted

]

properties([
Expand Down