Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
linux_distribution_support.py
Go to the documentation of this file.
1#!/usr/bin/env python3
2
3# Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
4# for details. All rights reserved. Use of this source code is governed by a
5# BSD-style license that can be found in the LICENSE file.
6"""
7Buildbot steps for src tarball generation and debian package generation
8
9Package up the src of the dart repo and create a debian package.
10Archive tarball and debian package to google cloud storage.
11"""
12
13import os
14import subprocess
15import sys
16
17sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'bots'))
18import bot_utils
19
20utils = bot_utils.GetUtils()
21
22HOST_OS = utils.GuessOS()
23
24
25def InstallFromDep(builddir):
26 for entry in os.listdir(builddir):
27 if entry.endswith("_amd64.deb"):
28 path = os.path.join(builddir, entry)
29 Run(['dpkg', '-i', path])
30
31
33 Run(['dpkg', '-r', 'dart'])
34
35
36def CreateDartTestFile(tempdir):
37 filename = os.path.join(tempdir, 'test.dart')
38 with open(filename, 'w') as f:
39 f.write('void main() {\n')
40 f.write(' print("Hello world");\n')
41 f.write('}')
42 return filename
43
44
45def Run(command):
46 print("Running: %s" % ' '.join(command))
47 sys.stdout.flush()
48 no_color_env = dict(os.environ)
49 no_color_env['TERM'] = 'nocolor'
50 subprocess.check_call(command, env=no_color_env)
51
52
53def TestInstallation(assume_installed=True):
54 paths = ['/usr/bin/dart', '/usr/lib/dart/bin/dart']
55 for path in paths:
56 if os.path.exists(path):
57 if not assume_installed:
58 print('Assumed not installed, found %s' % path)
59 sys.exit(1)
60 else:
61 if assume_installed:
62 print('Assumed installed, but could not find %s' % path)
63 sys.exit(1)
64
65
67 version = utils.GetVersion()
68 builddir = os.path.join(bot_utils.DART_DIR, utils.GetBuildDir(HOST_OS),
69 'src_and_installation')
70
71 if not os.path.exists(builddir):
72 os.makedirs(builddir)
73 tarfilename = 'dart-%s.tar.gz' % version
74 tarfile = os.path.join(builddir, tarfilename)
75
76 print('Validating that we are on debian bullseye')
77 args = ['cat', '/etc/os-release']
78 (stdout, stderr, exitcode) = bot_utils.run(args)
79 if exitcode != 0:
80 print("Could not find linux system, exiting")
81 sys.exit(1)
82 if not "bullseye" in stdout:
83 print("Trying to build Debian bits but not on Debian Bullseye")
84 print("You can't fix this, please contact dart-engprod@")
85 sys.exit(1)
86
87 print('Building src tarball')
88 Run([
89 sys.executable, 'tools/linux_dist_support/create_tarball.py',
90 '--tar_filename', tarfile
91 ])
92
93 print('Building Debian packages')
94 Run([
95 sys.executable, 'tools/linux_dist_support/create_debian_packages.py',
96 '--tar_filename', tarfile, '--out_dir', builddir
97 ])
98
99 if os.path.exists('/usr/bin/dart') or os.path.exists(
100 '/usr/lib/dart/bin/dart'):
101 print("Dart already installed, removing")
103 TestInstallation(assume_installed=False)
104
105 InstallFromDep(builddir)
106 TestInstallation(assume_installed=True)
107
108 # We build the runtime target to get everything we need to test the
109 # standalone target.
110 Run([
111 sys.executable, 'tools/build.py', '--mode=release', '--arch=x64',
112 'runtime'
113 ])
114 # Copy in the installed binary to avoid polluting /usr/bin (and having to
115 # run as root)
116 Run(['cp', '/usr/bin/dart', 'out/ReleaseX64/dart'])
117
118 # Check dart, dart compile js, and dart analyze against a hello world program
119 with utils.TempDir() as temp_dir:
120 test_file = CreateDartTestFile(temp_dir)
121 Run(['/usr/lib/dart/bin/dart', 'compile', 'js', test_file])
122 Run(['/usr/lib/dart/bin/dart', 'analyze', test_file])
123 Run(['/usr/lib/dart/bin/dart', test_file])
124
126 TestInstallation(assume_installed=False)
127
128
129if __name__ == '__main__':
130 SrcSteps()
void print(void *str)
Definition bridge.cpp:126
TestInstallation(assume_installed=True)
GetBuildDir(host_os)
Definition utils.py:99
GetVersion(no_git_hash=False, version_file=None, git_revision_file=None)
Definition utils.py:357
GuessOS()
Definition utils.py:21