Merge pull request #11487 from electron/circleci-cross-arch-testing

Add testing for arm, arm64 and ia32 linux builds
This commit is contained in:
John Kleinschmidt 2018-01-08 11:01:55 -05:00 committed by GitHub
commit 83b351a8fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 206 additions and 2 deletions

11
script/get-version.py Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env python
import sys
from lib.util import get_electron_version
def main():
print get_electron_version()
if __name__ == '__main__':
sys.exit(main())