Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
Remove most 32bit builds from taskcluster builds. Fixes #1855 (#1867)
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemarvin authored Sep 20, 2019
1 parent cfdab61 commit c7938b3
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tools/taskcluster/build_targets.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
import sys

platforms = {
'oculusvr': ['arm', 'arm64'],
'oculusvrStore': ['arm', 'arm64'],
'oculusvr3dofStore': ['arm', 'arm64'],
'wavevr': ['arm', 'arm64'],
'wavevrStore': ['arm', 'arm64'],
'googlevr': ['arm', 'arm64'],
'noapi': ['arm', 'arm64', 'x86_64'],
'svr': ['arm', 'arm64'],
'oculusvr': ['arm64'],
'oculusvrStore': ['arm64'],
'oculusvr3dofStore': ['arm64'],
'wavevr': ['arm64'],
'wavevrStore': ['arm64', 'arm'],
'googlevr': ['arm64'],
'noapi': ['arm64', 'x86_64'],
'svr': ['arm64'],
}

def findMode(arg):
Expand All @@ -56,7 +56,7 @@ def findMode(arg):
return 'Release'

def findArch(mode):
archList = platforms.get(mode[0], ['arm'])
archList = platforms.get(mode[0], ['arm64'])
if len(mode) > 1:
value = mode[1]
if value == 'a' or value == 'all':
Expand Down

0 comments on commit c7938b3

Please sign in to comment.