Skip to main content

Deploy details

Published deploy for browser-audio-recorder-workshop

Fix? :diamond_shape_with_a_dot_inside:

Production: master@c4da3f6

Deploy log

8:10:37 PM: Build ready to start
8:10:42 PM: build-image version: 9e0f207a27642d0115b1ca97cd5e8cebbe492f63
8:10:42 PM: build-image tag: v3.3.2
8:10:42 PM: buildbot version: a2bab682ae0761baa4d123ebd00c57be933655dc
8:10:42 PM: Fetching cached dependencies
8:10:42 PM: Starting to download cache of 138.1MB
8:10:43 PM: Finished downloading cache in 1.050551988s
8:10:43 PM: Starting to extract cache
8:10:47 PM: Finished extracting cache in 4.326305047s
8:10:47 PM: Finished fetching cache in 5.416774265s
8:10:47 PM: Starting to prepare the repo for build
8:10:48 PM: Preparing Git Reference refs/heads/master
8:10:49 PM: Starting build script
8:10:49 PM: Installing dependencies
8:10:50 PM: Started restoring cached node version
8:10:51 PM: Finished restoring cached node version
8:10:52 PM: v10.17.0 is already installed.
8:10:53 PM: Now using node v10.17.0 (npm v6.11.3)
8:10:53 PM: Attempting ruby version 2.6.2, read from environment
8:10:54 PM: Using ruby version 2.6.2
8:10:54 PM: Using PHP version 5.6
8:10:54 PM: Started restoring cached node modules
8:10:54 PM: Finished restoring cached node modules
8:10:54 PM: Started restoring cached go cache
8:10:54 PM: Finished restoring cached go cache
8:10:54 PM: unset GOOS;
8:10:54 PM: unset GOARCH;
8:10:54 PM: export GOROOT='/opt/buildhome/.gimme/versions/go1.12.linux.amd64';
8:10:54 PM: export PATH="/opt/buildhome/.gimme/versions/go1.12.linux.amd64/bin:${PATH}";
8:10:54 PM: go version >&2;
8:10:54 PM: export GIMME_ENV='/opt/buildhome/.gimme/env/go1.12.linux.amd64.env';
8:10:54 PM: go version go1.12 linux/amd64
8:10:54 PM: Installing missing commands
8:10:54 PM: Verify run directory
8:10:54 PM: Executing user command: npm run build
8:10:55 PM: > browser-audio-recorder-workshop@0.1.0 build /opt/build/repo
8:10:55 PM: > vue-cli-service build
8:10:55 PM: - Building for production...
8:11:08 PM: WARNING Compiled with 5 warnings8:11:08 PM
8:11:08 PM: warning in ./src/views/Audio/Index.vue
8:11:08 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:65:7:
8:11:08 PM: 63 | methods: {
8:11:08 PM: 64 | start () {
8:11:08 PM: > 65 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 66 | this.mediaRecorder.start()
8:11:08 PM: 67 | this.isRecording = true
8:11:08 PM: 68 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:70:7:
8:11:08 PM: 68 | },
8:11:08 PM: 69 | stop () {
8:11:08 PM: > 70 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 71 | this.mediaRecorder.stop()
8:11:08 PM: 72 | this.isRecording = false
8:11:08 PM: 73 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:75:7:
8:11:08 PM: 73 | },
8:11:08 PM: 74 | pause () {
8:11:08 PM: > 75 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 76 | this.mediaRecorder.pause()
8:11:08 PM: 77 | this.isRecording = false
8:11:08 PM: 78 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:80:7:
8:11:08 PM: 78 | },
8:11:08 PM: 79 | resume () {
8:11:08 PM: > 80 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 81 | this.mediaRecorder.resume()
8:11:08 PM: 82 | this.isRecording = true
8:11:08 PM: 83 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:98:11:
8:11:08 PM: 96 | // La interfaz MediaStream representa una secuencia de contenido multimedia.
8:11:08 PM: 97 | // Una transmisión consta de varias pistas, como pistas de video o audio.
8:11:08 PM: > 98 | console.log(stream)
8:11:08 PM: | ^
8:11:08 PM: 99 |
8:11:08 PM: 100 | // Crea un objeto MediaRecorder dado un objeto MediaStream
8:11:08 PM: 101 | this.mediaRecorder = new MediaRecorder(stream)
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:110:13:
8:11:08 PM: 108 | // Evento onStop
8:11:08 PM: 109 | this.mediaRecorder.onstop = (e) => {
8:11:08 PM: > 110 | console.log(stream)
8:11:08 PM: | ^
8:11:08 PM: 111 | console.log('recorder stopped')
8:11:08 PM: 112 |
8:11:08 PM: 113 | // Un objeto Blob representa un objeto tipo fichero de datos planos inmutables
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:111:13:
8:11:08 PM: 109 | this.mediaRecorder.onstop = (e) => {
8:11:08 PM: 110 | console.log(stream)
8:11:08 PM: > 111 | console.log('recorder stopped')
8:11:08 PM: | ^
8:11:08 PM: 112 |
8:11:08 PM: 113 | // Un objeto Blob representa un objeto tipo fichero de datos planos inmutables
8:11:08 PM: 114 | // Los Blobs representan datos que no necesariamente se encuentran en un formato nativo de JavaScript
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:129:11:
8:11:08 PM: 127 | })
8:11:08 PM: 128 | .catch((err) => {
8:11:08 PM: > 129 | console.log('Err: ' + err)
8:11:08 PM: | ^
8:11:08 PM: 130 | })
8:11:08 PM: 131 | } else {
8:11:08 PM: 132 | this.supported = false
8:11:08 PM: 8 errors found.
8:11:08 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:11:08 PM: @ ./src/router/index.js
8:11:08 PM: @ ./src/main.js
8:11:08 PM: @ multi ./src/main.js
8:11:08 PM: warning in ./src/views/FaceDetection/Index.vue
8:11:08 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:34:9:
8:11:08 PM: 32 | // Comprobar si está disponible
8:11:08 PM: 33 | if (typeof window.FaceDetector === 'undefined') {
8:11:08 PM: > 34 | console.log('No face detection!')
8:11:08 PM: | ^
8:11:08 PM: 35 | return
8:11:08 PM: 36 | }
8:11:08 PM: 37 |
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:50:11:
8:11:08 PM: 48 | faceDetector.detect(this.$refs.image)
8:11:08 PM: 49 | .then(faces => {
8:11:08 PM: > 50 | console.log(faces)
8:11:08 PM: | ^
8:11:08 PM: 51 |
8:11:08 PM: 52 | faces.forEach((face) => {
8:11:08 PM: 53 | // Face box
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:72:13:
8:11:08 PM: 70 | this.$refs.wrap.appendChild(faceBox)
8:11:08 PM: 71 |
8:11:08 PM: > 72 | console.log(faceBox)
8:11:08 PM: | ^
8:11:08 PM: 73 | })
8:11:08 PM: 74 | })
8:11:08 PM: 75 | .catch((err) => {
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:76:11:
8:11:08 PM: 74 | })
8:11:08 PM: 75 | .catch((err) => {
8:11:08 PM: > 76 | console.error(err.toString())
8:11:08 PM: | ^
8:11:08 PM: 77 | })
8:11:08 PM: 78 | }
8:11:08 PM: 79 | }
8:11:08 PM: 4 errors found.
8:11:08 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:11:08 PM: @ ./src/router/index.js
8:11:08 PM: @ ./src/main.js
8:11:08 PM: @ multi ./src/main.js
8:11:08 PM: warning in ./src/views/Video/Index.vue
8:11:08 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:58:7:
8:11:08 PM: 56 | methods: {
8:11:08 PM: 57 | start () {
8:11:08 PM: > 58 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 59 | this.mediaRecorder.start()
8:11:08 PM: 60 | this.isRecording = true
8:11:08 PM: 61 | },
8:11:10 PM: Starting post processing
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:63:7:
8:11:08 PM: 61 | },
8:11:08 PM: 62 | stop () {
8:11:08 PM: > 63 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 64 | this.mediaRecorder.stop()
8:11:08 PM: 65 | this.isRecording = false
8:11:08 PM: 66 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:68:7:
8:11:08 PM: 66 | },
8:11:08 PM: 67 | pause () {
8:11:08 PM: > 68 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:10 PM: Post processing done
8:11:08 PM: 69 | this.mediaRecorder.pause()
8:11:08 PM: 70 | this.isRecording = false
8:11:08 PM: 71 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:73:7:
8:11:08 PM: 71 | },
8:11:08 PM: 72 | resume () {
8:11:08 PM: > 73 | console.log('State: ', this.mediaRecorder.state)
8:11:08 PM: | ^
8:11:08 PM: 74 | this.mediaRecorder.resume()
8:11:08 PM: 75 | this.isRecording = true
8:11:08 PM: 76 | },
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:86:11:
8:11:08 PM: 84 | navigator.mediaDevices.getUserMedia({ audio: true, video: true })
8:11:08 PM: 85 | .then((stream) => {
8:11:08 PM: > 86 | console.log(stream)
8:11:08 PM: | ^
8:11:10 PM: Site is live
8:11:08 PM: 87 |
8:11:08 PM: 88 | this.mediaRecorder = new MediaRecorder(stream)
8:11:08 PM: 89 |
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:109:11:
8:11:08 PM: 107 | })
8:11:08 PM: 108 | .catch((err) => {
8:11:08 PM: > 109 | console.log('Err: ' + err)
8:11:08 PM: | ^
8:11:08 PM: 110 | })
8:11:08 PM: 111 | } else {
8:11:08 PM: 112 | console.log('VIDEO: NO SOPORTADO')
8:11:08 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:112:7:
8:11:08 PM: 110 | })
8:11:08 PM: 111 | } else {
8:11:08 PM: > 112 | console.log('VIDEO: NO SOPORTADO')
8:11:08 PM: | ^
8:11:08 PM: 113 | }
8:11:08 PM: 114 | }
8:11:08 PM: 115 | }
8:11:08 PM: 7 errors found.
8:11:08 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:11:08 PM: @ ./src/router/index.js
8:11:08 PM: @ ./src/main.js
8:11:08 PM: @ multi ./src/main.js
8:11:08 PM: warning
8:11:08 PM: asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
8:11:08 PM: This can impact web performance.
8:11:08 PM: Assets:
8:11:08 PM: img/main.7c5b78f9.png (302 KiB)
8:11:08 PM: img/faces.8d3e554e.png (1.11 MiB)
8:11:08 PM: img/baumannzone.382c932f.png (286 KiB)
8:11:08 PM: js/chunk-vendors.0ff69857.js (468 KiB)
8:11:08 PM: warning
8:11:08 PM: entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
8:11:08 PM: Entrypoints:
8:11:08 PM: app (699 KiB)
8:11:08 PM: css/chunk-vendors.179714e9.css
8:11:08 PM: js/chunk-vendors.0ff69857.js
8:11:08 PM: css/app.35666d61.css
8:11:08 PM: js/app.cdb3512f.js
8:11:08 PM: File Size Gzipped
8:11:08 PM: dist/js/chunk-vendors.0ff69857.js 467.97 KiB 128.30 KiB
8:11:08 PM: dist/js/chunk-6fc15195.43e1d784.js 20.06 KiB 7.76 KiB
8:11:08 PM: dist/js/chunk-659475b6.d6417038.js 16.31 KiB 6.39 KiB
8:11:08 PM: dist/js/app.cdb3512f.js 7.36 KiB 3.04 KiB
8:11:08 PM: dist/js/chunk-08794e95.0a75ec50.js 4.64 KiB 2.02 KiB
8:11:08 PM: dist/js/chunk-2d0e57ef.0682405b.js 3.04 KiB 1.17 KiB
8:11:08 PM: dist/js/chunk-c6ff8e42.f2a7b799.js 2.77 KiB 1.13 KiB
8:11:08 PM: dist/js/chunk-2d21045f.d4cd0cf4.js 0.46 KiB 0.32 KiB
8:11:08 PM: dist/css/chunk-vendors.179714e9.css 223.51 KiB 30.09 KiB
8:11:08 PM: dist/css/chunk-08794e95.f37babfc.css 0.65 KiB 0.22 KiB
8:11:08 PM: dist/css/app.35666d61.css 0.36 KiB 0.25 KiB
8:11:08 PM: dist/css/chunk-659475b6.498e064e.css 0.15 KiB 0.12 KiB
8:11:08 PM: dist/css/chunk-c6ff8e42.c0391575.css 0.04 KiB 0.05 KiB
8:11:08 PM: Images and other types of assets omitted.
8:11:08 PM: DONE Build complete. The dist directory is ready to be deployed.
8:11:08 PM: INFO Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html
8:11:09 PM: Skipping functions preparation step: no functions directory set
8:11:09 PM: Caching artifacts
8:11:09 PM: Started saving node modules
8:11:09 PM: Finished saving node modules
8:11:09 PM: Started saving pip cache
8:11:09 PM: Finished saving pip cache
8:11:09 PM: Started saving emacs cask dependencies
8:11:09 PM: Finished saving emacs cask dependencies
8:11:09 PM: Started saving maven dependencies
8:11:09 PM: Finished saving maven dependencies
8:11:09 PM: Started saving boot dependencies
8:11:09 PM: Finished saving boot dependencies
8:11:09 PM: Started saving go dependencies
8:11:09 PM: Finished saving go dependencies
8:11:09 PM: Build script success
8:11:09 PM: Starting to deploy site from 'dist'
8:11:09 PM: Creating deploy tree
8:11:09 PM: 5 new files to upload
8:11:09 PM: 0 new functions to upload
8:11:31 PM: Finished processing build request in 49.434349621s