Created
August 12, 2017 07:06
-
-
Save aschrijver/fb5c6be1539e61a5b3d077b75ed24d36 to your computer and use it in GitHub Desktop.
Testdriving J2V8 build system PR (https://github.com/eclipsesource/J2V8/pull/327)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
09:02 $ python build.py --interactive | |
entering interactive mode... | |
[0] Docker >> android-x86 >> NODE_ENABLED | |
[1] Docker >> android-arm >> NODE_ENABLED | |
[2] Docker >> alpine-linux-x64 >> NODE_ENABLED | |
[3] Docker >> linux-x64 >> NODE_ENABLED | |
[4] Docker >> linux-x86 >> NODE_ENABLED | |
[5] Vagrant >> macosx-x64 >> NODE_ENABLED | |
[6] Vagrant >> macosx-x86 >> NODE_ENABLED | |
[7] Native >> windows-x64 >> NODE_ENABLED | |
[8] Docker >> windows-x64 >> NODE_ENABLED | |
[9] Vagrant >> windows-x64 >> NODE_ENABLED | |
Select a predefined build-configuration to run: 1 | |
Building: Docker >> android-arm >> NODE_ENABLED | |
Override build-steps ? (leave empty to run pre-configured steps): | |
Checking Node.js builtins integration consistency... | |
Caching Node.js artifacts... | |
>>> Node.js build-cache used: android.arm | |
CONTAINER CPU % MEM USAGE / LIMIT MEM % NET I/O BLOCK I/O PIDS | |
Error response from daemon: No such container: j2v8.android.arm | |
Updating Maven configuration (./docker/shared/pom.xml)... | |
preparing android@arm => docker-build-host | |
Building docker image: j2v8-android | |
Sending build context to Docker daemon 56.83 kB | |
Step 1 : ARG sys_image=debian:jessie | |
Please provide a source image with `from` prior to commit | |
Traceback (most recent call last): | |
File "build.py", line 13, in <module> | |
interactive.run_interactive_cli() | |
File "/home/arnold/Development/misc/J2V8/build_system/build_interactive.py", line 40, in run_interactive_cli | |
bex.execute_build(build_params) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_executor.py", line 221, in execute_build | |
execute_build_step(cross_compiler, cross_cfg) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_executor.py", line 190, in execute_build_step | |
build_system.build(build_step) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 82, in build | |
self.pre_build(config) | |
File "/home/arnold/Development/misc/J2V8/build_system/docker_build.py", line 84, in pre_build | |
self.exec_host_cmd("docker build " + args_str + " -f $PLATFORM/Dockerfile -t \"" + image_name + "\" .", config) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 88, in exec_host_cmd | |
self.__exec_cmd_core(cmd, config, config.host_cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 105, in __exec_cmd_core | |
utils.execute(cmd, cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_utils.py", line 52, in execute | |
raise subprocess.CalledProcessError(return_code, cmd) | |
subprocess.CalledProcessError: Command 'docker build -f android/Dockerfile -t "j2v8-android" .' returned non-zero exit status 1 | |
Waiting for docker process to exit... | |
Error response from daemon: No such container: j2v8.android.arm | |
Error in atexit._run_exitfuncs: | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/atexit.py", line 24, in _run_exitfuncs | |
func(*targs, **kargs) | |
File "/home/arnold/Development/misc/J2V8/build_system/docker_build.py", line 69, in cli_exit_event | |
self.exec_host_cmd(docker_stop_str, config) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 88, in exec_host_cmd | |
self.__exec_cmd_core(cmd, config, config.host_cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 105, in __exec_cmd_core | |
utils.execute(cmd, cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_utils.py", line 52, in execute | |
raise subprocess.CalledProcessError(return_code, cmd) | |
CalledProcessError: Command 'docker stop j2v8.android.arm' returned non-zero exit status 1 | |
Error in sys.exitfunc: | |
Traceback (most recent call last): | |
File "/usr/lib/python2.7/atexit.py", line 24, in _run_exitfuncs | |
func(*targs, **kargs) | |
File "/home/arnold/Development/misc/J2V8/build_system/docker_build.py", line 69, in cli_exit_event | |
self.exec_host_cmd(docker_stop_str, config) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 88, in exec_host_cmd | |
self.__exec_cmd_core(cmd, config, config.host_cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_structures.py", line 105, in __exec_cmd_core | |
utils.execute(cmd, cwd) | |
File "/home/arnold/Development/misc/J2V8/build_system/build_utils.py", line 52, in execute | |
raise subprocess.CalledProcessError(return_code, cmd) | |
subprocess.CalledProcessError: Command 'docker stop j2v8.android.arm' returned non-zero exit status 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment