Skip to main content

Deploy details

Deploy successful for browser-audio-recorder-workshop

[ImgBot] Optimize images

PR #3: imgbot@8abdb2a

Deploy log

8:53:57 PM: Waiting for other deploys from your team to complete
8:54:02 PM: Build ready to start
8:54:07 PM: build-image version: 9e0f207a27642d0115b1ca97cd5e8cebbe492f63
8:54:07 PM: build-image tag: v3.3.2
8:54:07 PM: buildbot version: a2bab682ae0761baa4d123ebd00c57be933655dc
8:54:07 PM: Fetching cached dependencies
8:54:07 PM: Starting to download cache of 123.2MB
8:54:08 PM: Finished downloading cache in 882.541357ms
8:54:08 PM: Starting to extract cache
8:54:12 PM: Finished extracting cache in 4.493326952s
8:54:12 PM: Finished fetching cache in 5.451442829s
8:54:12 PM: Starting to prepare the repo for build
8:54:13 PM: Preparing Git Reference pull/3/head
8:54:14 PM: Starting build script
8:54:14 PM: Installing dependencies
8:54:15 PM: Started restoring cached node version
8:54:17 PM: Finished restoring cached node version
8:54:17 PM: v10.17.0 is already installed.
8:54:18 PM: Now using node v10.17.0 (npm v6.11.3)
8:54:19 PM: Attempting ruby version 2.6.2, read from environment
8:54:20 PM: Using ruby version 2.6.2
8:54:20 PM: Using PHP version 5.6
8:54:20 PM: Started restoring cached node modules
8:54:20 PM: Finished restoring cached node modules
8:54:20 PM: Started restoring cached go cache
8:54:20 PM: Finished restoring cached go cache
8:54:20 PM: unset GOOS;
8:54:20 PM: unset GOARCH;
8:54:20 PM: export GOROOT='/opt/buildhome/.gimme/versions/go1.12.linux.amd64';
8:54:20 PM: export PATH="/opt/buildhome/.gimme/versions/go1.12.linux.amd64/bin:${PATH}";
8:54:20 PM: go version >&2;
8:54:20 PM: export GIMME_ENV='/opt/buildhome/.gimme/env/go1.12.linux.amd64.env';
8:54:20 PM: go version go1.12 linux/amd64
8:54:20 PM: Installing missing commands
8:54:20 PM: Verify run directory
8:54:20 PM: Executing user command: npm run build
8:54:21 PM: > browser-audio-recorder-workshop@0.1.0 build /opt/build/repo
8:54:21 PM: > vue-cli-service build
8:54:21 PM: - Building for production...
8:54:36 PM: WARNING Compiled with 5 warnings8:54:36 PM
8:54:36 PM: warning in ./src/views/Audio/Index.vue
8:54:36 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:71:7:
8:54:36 PM: 69 | methods: {
8:54:36 PM: 70 | start () {
8:54:36 PM: > 71 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 72 | this.mediaRecorder.start()
8:54:36 PM: 73 | this.isRecording = true
8:54:36 PM: 74 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:76:7:
8:54:36 PM: 74 | },
8:54:36 PM: 75 | stop () {
8:54:36 PM: > 76 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 77 | this.mediaRecorder.stop()
8:54:36 PM: 78 | this.isRecording = false
8:54:36 PM: 79 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:81:7:
8:54:36 PM: 79 | },
8:54:36 PM: 80 | pause () {
8:54:36 PM: > 81 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 82 | this.mediaRecorder.pause()
8:54:36 PM: 83 | this.isRecording = false
8:54:36 PM: 84 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:86:7:
8:54:36 PM: 84 | },
8:54:36 PM: 85 | resume () {
8:54:36 PM: > 86 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 87 | this.mediaRecorder.resume()
8:54:36 PM: 88 | this.isRecording = true
8:54:36 PM: 89 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:104:11:
8:54:36 PM: 102 | // La interfaz MediaStream representa una secuencia de contenido multimedia.
8:54:36 PM: 103 | // Una transmisión consta de varias pistas, como pistas de video o audio.
8:54:36 PM: > 104 | console.log(stream)
8:54:36 PM: | ^
8:54:36 PM: 105 |
8:54:36 PM: 106 | // Crea un objeto MediaRecorder dado un objeto MediaStream
8:54:36 PM: 107 | this.mediaRecorder = new MediaRecorder(stream)
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:116:13:
8:54:36 PM: 114 | // Evento onStop
8:54:36 PM: 115 | this.mediaRecorder.onstop = (e) => {
8:54:36 PM: > 116 | console.log(stream)
8:54:36 PM: | ^
8:54:36 PM: 117 | console.log('recorder stopped')
8:54:36 PM: 118 |
8:54:36 PM: 119 | // Un objeto Blob representa un objeto tipo fichero de datos planos inmutables
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:117:13:
8:54:36 PM: 115 | this.mediaRecorder.onstop = (e) => {
8:54:36 PM: 116 | console.log(stream)
8:54:36 PM: > 117 | console.log('recorder stopped')
8:54:36 PM: | ^
8:54:36 PM: 118 |
8:54:36 PM: 119 | // Un objeto Blob representa un objeto tipo fichero de datos planos inmutables
8:54:36 PM: 120 | // Los Blobs representan datos que no necesariamente se encuentran en un formato nativo de JavaScript
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Audio/Index.vue:135:11:
8:54:36 PM: 133 | })
8:54:36 PM: 134 | .catch((err) => {
8:54:36 PM: > 135 | console.log('Err: ' + err)
8:54:36 PM: | ^
8:54:36 PM: 136 | })
8:54:36 PM: 137 | } else {
8:54:36 PM: 138 | this.supported = false
8:54:36 PM: 8 errors found.
8:54:36 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:54:36 PM: @ ./src/router/index.js
8:54:36 PM: @ ./src/main.js
8:54:36 PM: @ multi ./src/main.js
8:54:36 PM: warning in ./src/views/FaceDetection/Index.vue
8:54:36 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:62:11:
8:54:36 PM: 60 | faceDetector.detect(this.$refs.image)
8:54:36 PM: 61 | .then(faces => {
8:54:36 PM: > 62 | console.log(faces)
8:54:36 PM: | ^
8:54:36 PM: 63 |
8:54:36 PM: 64 | faces.forEach((face) => {
8:54:36 PM: 65 | // Face box
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:76:13:
8:54:36 PM: 74 | `
8:54:36 PM: 75 | this.$refs.wrap.appendChild(faceBox)
8:54:36 PM: > 76 | console.log(faceBox)
8:54:36 PM: | ^
8:54:36 PM: 77 | })
8:54:36 PM: 78 | })
8:54:36 PM: 79 | .catch((err) => {
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/FaceDetection/Index.vue:80:11:
8:54:36 PM: 78 | })
8:54:36 PM: 79 | .catch((err) => {
8:54:36 PM: > 80 | console.error(err.toString())
8:54:36 PM: | ^
8:54:36 PM: 81 | })
8:54:36 PM: 82 | }
8:54:36 PM: 83 | }
8:54:36 PM: 3 errors found.
8:54:36 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:54:36 PM: @ ./src/router/index.js
8:54:36 PM: @ ./src/main.js
8:54:36 PM: @ multi ./src/main.js
8:54:36 PM: warning in ./src/views/Video/Index.vue
8:54:36 PM: Module Error (from ./node_modules/eslint-loader/index.js):
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:63:7:
8:54:36 PM: 61 | methods: {
8:54:36 PM: 62 | start () {
8:54:36 PM: > 63 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 64 | this.mediaRecorder.start()
8:54:36 PM: 65 | this.isRecording = true
8:54:36 PM: 66 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:68:7:
8:54:36 PM: 66 | },
8:54:36 PM: 67 | stop () {
8:54:36 PM: > 68 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 69 | this.mediaRecorder.stop()
8:54:36 PM: 70 | this.isRecording = false
8:54:36 PM: 71 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:73:7:
8:54:36 PM: 71 | },
8:54:36 PM: 72 | pause () {
8:54:36 PM: > 73 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 74 | this.mediaRecorder.pause()
8:54:36 PM: 75 | this.isRecording = false
8:54:36 PM: 76 | },
8:54:38 PM: Starting post processing
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:78:7:
8:54:36 PM: 76 | },
8:54:36 PM: 77 | resume () {
8:54:36 PM: > 78 | console.log('State: ', this.mediaRecorder.state)
8:54:36 PM: | ^
8:54:36 PM: 79 | this.mediaRecorder.resume()
8:54:36 PM: 80 | this.isRecording = true
8:54:36 PM: 81 | },
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:91:11:
8:54:36 PM: 89 | navigator.mediaDevices.getUserMedia({ audio: true, video: true })
8:54:38 PM: Post processing done
8:54:36 PM: 90 | .then((stream) => {
8:54:36 PM: > 91 | console.log(stream)
8:54:36 PM: | ^
8:54:36 PM: 92 |
8:54:36 PM: 93 | this.mediaRecorder = new MediaRecorder(stream)
8:54:36 PM: 94 |
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:114:11:
8:54:36 PM: 112 | })
8:54:36 PM: 113 | .catch((err) => {
8:54:36 PM: > 114 | console.log('Err: ' + err)
8:54:36 PM: | ^
8:54:36 PM: 115 | })
8:54:36 PM: 116 | } else {
8:54:36 PM: 117 | console.log('VIDEO: NO SOPORTADO')
8:54:36 PM: error: Unexpected console statement (no-console) at src/views/Video/Index.vue:117:7:
8:54:36 PM: 115 | })
8:54:36 PM: 116 | } else {
8:54:36 PM: > 117 | console.log('VIDEO: NO SOPORTADO')
8:54:36 PM: | ^
8:54:36 PM: 118 | }
8:54:36 PM: 119 | }
8:54:36 PM: 120 | }
8:54:36 PM: 7 errors found.
8:54:36 PM: @ ./src/views lazy ^\.\/.*\/Index\.vue$ namespace object
8:54:36 PM: @ ./src/router/index.js
8:54:36 PM: @ ./src/main.js
8:54:39 PM: Site is live
8:54:36 PM: @ multi ./src/main.js
8:54:36 PM: warning
8:54:36 PM: asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
8:54:36 PM: This can impact web performance.
8:54:36 PM: Assets:
8:54:36 PM: img/main.7c5b78f9.png (302 KiB)
8:54:36 PM: img/faces.8d3e554e.png (1.11 MiB)
8:54:36 PM: img/baumannzone.382c932f.png (286 KiB)
8:54:36 PM: js/chunk-vendors.0ff69857.js (468 KiB)
8:54:36 PM: warning
8:54:36 PM: entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
8:54:36 PM: Entrypoints:
8:54:36 PM: app (699 KiB)
8:54:36 PM: css/chunk-vendors.179714e9.css
8:54:36 PM: js/chunk-vendors.0ff69857.js
8:54:36 PM: css/app.35666d61.css
8:54:36 PM: js/app.a7fd1d65.js
8:54:36 PM: File Size Gzipped
8:54:36 PM: dist/js/chunk-vendors.0ff69857.js 467.97 KiB 128.30 KiB
8:54:36 PM: dist/js/chunk-4c3cabe6.fc3cf20a.js 19.32 KiB 7.40 KiB
8:54:36 PM: dist/js/app.a7fd1d65.js 7.38 KiB 3.05 KiB
8:54:36 PM: dist/js/chunk-5d9417ab.6159bf19.js 4.64 KiB 2.02 KiB
8:54:36 PM: dist/js/chunk-1c922e38.089ca995.js 3.79 KiB 1.82 KiB
8:54:36 PM: dist/js/chunk-3d7daf19.7ba01d25.js 3.61 KiB 1.37 KiB
8:54:36 PM: dist/js/chunk-ed92121a.d376b49a.js 3.24 KiB 1.30 KiB
8:54:36 PM: dist/js/chunk-2d21045f.d4cd0cf4.js 0.46 KiB 0.32 KiB
8:54:36 PM: dist/css/chunk-vendors.179714e9.css 223.51 KiB 30.09 KiB
8:54:36 PM: dist/css/chunk-5d9417ab.f37babfc.css 0.65 KiB 0.22 KiB
8:54:36 PM: dist/css/app.35666d61.css 0.36 KiB 0.25 KiB
8:54:36 PM: dist/css/chunk-1c922e38.498e064e.css 0.15 KiB 0.12 KiB
8:54:36 PM: dist/css/chunk-ed92121a.c0391575.css 0.04 KiB 0.05 KiB
8:54:36 PM: dist/css/chunk-3d7daf19.b4a78b86.css 0.00 KiB 0.02 KiB
8:54:36 PM: Images and other types of assets omitted.
8:54:36 PM: DONE Build complete. The dist directory is ready to be deployed.
8:54:36 PM: INFO Check out deployment instructions at https://cli.vuejs.org/guide/deployment.html
8:54:37 PM: Skipping functions preparation step: no functions directory set
8:54:37 PM: Caching artifacts
8:54:37 PM: Started saving node modules
8:54:37 PM: Finished saving node modules
8:54:37 PM: Started saving pip cache
8:54:37 PM: Finished saving pip cache
8:54:37 PM: Started saving emacs cask dependencies
8:54:37 PM: Finished saving emacs cask dependencies
8:54:37 PM: Started saving maven dependencies
8:54:37 PM: Finished saving maven dependencies
8:54:37 PM: Started saving boot dependencies
8:54:37 PM: Finished saving boot dependencies
8:54:37 PM: Started saving go dependencies
8:54:37 PM: Finished saving go dependencies
8:54:37 PM: Build script success
8:54:37 PM: Starting to deploy site from 'dist'
8:54:37 PM: Creating deploy tree
8:54:38 PM: 8 new files to upload
8:54:38 PM: 0 new functions to upload
8:55:01 PM: Finished processing build request in 54.487009698s