You are viewing a plain text version of this content. The canonical link for it is here.
Posted to builds@beam.apache.org by Apache Jenkins Server <je...@builds.apache.org> on 2022/01/10 12:26:15 UTC

Build failed in Jenkins: beam_PreCommit_Website_Cron #4859

See <https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/4859/display/redirect?page=changes>

Changes:

[Alexey Romanenko] [BEAM-8727] Bump software.amazon.awssdk to 2.17.106


------------------------------------------
Started by timer
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on apache-beam-jenkins-4 (beam) in workspace <https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/ws/>
The recommended git tool is: NONE
No credentials specified
Wiping out workspace first.
Cloning the remote Git repository
Cloning repository https://github.com/apache/beam.git
 > git init <https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/ws/src> # timeout=10
Fetching upstream changes from https://github.com/apache/beam.git
 > git --version # timeout=10
 > git --version # 'git version 2.7.4'
 > git fetch --tags --progress https://github.com/apache/beam.git +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/apache/beam.git # timeout=10
 > git config --add remote.origin.fetch +refs/heads/*:refs/remotes/origin/* # timeout=10
 > git config remote.origin.url https://github.com/apache/beam.git # timeout=10
Fetching upstream changes from https://github.com/apache/beam.git
 > git fetch --tags --progress https://github.com/apache/beam.git +refs/heads/*:refs/remotes/origin/* +refs/pull/${ghprbPullId}/*:refs/remotes/origin/pr/${ghprbPullId}/* # timeout=10
 > git rev-parse origin/master^{commit} # timeout=10
Checking out Revision 76812584f2fae1d8c178363f6e6b71024fe8403a (origin/master)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 76812584f2fae1d8c178363f6e6b71024fe8403a # timeout=10
Commit message: "Merge pull request #16456: [BEAM-8727] Bump software.amazon.awssdk to 2.17.106"
 > git rev-list --no-walk e208b9de80fb8bfde0804cf0e9fb1373b610ed44 # timeout=10
No emails were triggered.
[EnvInject] - Executing scripts and injecting environment variables after the SCM step.
[EnvInject] - Injecting as environment variables the properties content 
SPARK_LOCAL_IP=127.0.0.1
SETUPTOOLS_USE_DISTUTILS=stdlib

[EnvInject] - Variables injected successfully.
[Gradle] - Launching build.
[src] $ <https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/ws/src/gradlew> --continue --max-workers=12 -Dorg.gradle.jvmargs=-Xms2g -Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.vfs.watch=false -Pdocker-pull-licenses :websitePreCommit
Configuration on demand is an incubating feature.
> Task :buildSrc:compileJava NO-SOURCE
> Task :buildSrc:compileGroovy FROM-CACHE
> Task :buildSrc:pluginDescriptors
> Task :buildSrc:processResources
> Task :buildSrc:classes
> Task :buildSrc:jar
> Task :buildSrc:assemble
> Task :buildSrc:spotlessGroovy FROM-CACHE
> Task :buildSrc:spotlessGroovyCheck UP-TO-DATE
> Task :buildSrc:spotlessGroovyGradle FROM-CACHE
> Task :buildSrc:spotlessGroovyGradleCheck UP-TO-DATE
> Task :buildSrc:spotlessCheck UP-TO-DATE
> Task :buildSrc:pluginUnderTestMetadata
> Task :buildSrc:compileTestJava NO-SOURCE
> Task :buildSrc:compileTestGroovy NO-SOURCE
> Task :buildSrc:processTestResources NO-SOURCE
> Task :buildSrc:testClasses UP-TO-DATE
> Task :buildSrc:test NO-SOURCE
> Task :buildSrc:validatePlugins FROM-CACHE
> Task :buildSrc:check UP-TO-DATE
> Task :buildSrc:build

> Task :website:buildDockerImage
Sending build context to Docker daemon  51.48MB
Step 1/8 : FROM debian:stretch-slim
stretch-slim: Pulling from library/debian
Digest: sha256:5913f0038562c1964c62fc1a9fcfff3c7bb340e2f5dbf461610ab4f802368eee
Status: Downloaded newer image for debian:stretch-slim
 ---> 4b673a9c386b
Step 2/8 : SHELL ["/bin/bash", "-o", "pipefail", "-e", "-u", "-x", "-c"]
 ---> Using cache
 ---> a2f5f8171441
Step 3/8 : ENV DEBIAN_FRONTEND=noninteractive     LANGUAGE=C.UTF-8     LANG=C.UTF-8     LC_ALL=C.UTF-8     LC_CTYPE=C.UTF-8     LC_MESSAGES=C.UTF-8
 ---> Using cache
 ---> a7e6090dfa9e
Step 4/8 : RUN apt-get update     && apt-get install -y --no-install-recommends         ca-certificates         curl         git         gnupg2         gosu         lynx     && apt-get autoremove -yqq --purge     && apt-get clean     && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 82975df7c4fb
Step 5/8 : RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -     && apt-get update     && apt-get install -y --no-install-recommends         nodejs     && apt-get autoremove -yqq --purge     && apt-get clean     && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 1e1ce47e8a09
Step 6/8 : RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -     && echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list     && apt-get update     && apt-get install -y --no-install-recommends yarn     && apt-get autoremove -yqq --purge     && apt-get clean     && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> d350093e2937
Step 7/8 : RUN HUGOHOME="$(mktemp -d)"     && export HUGOHOME     && curl -sL https://github.com/gohugoio/hugo/releases/download/v0.68.3/hugo_extended_0.68.3_Linux-64bit.tar.gz > "${HUGOHOME}/hugo.tar.gz"     && tar -xzvf "${HUGOHOME}/hugo.tar.gz" hugo     && mv hugo /usr/local/bin/hugo     && chmod +x /usr/local/bin/hugo     && rm -r "${HUGOHOME}"
 ---> Using cache
 ---> e1246c636f2f
Step 8/8 : WORKDIR /opt/
 ---> Using cache
 ---> 44b82cdaf045
Successfully built 44b82cdaf045
Successfully tagged beam-website:latest

> Task :website:createDockerContainer

> Task :website:startDockerContainer
a28951578a95d473daa1de0b06ca7f06fbe2c51680d1b8c1eb883af876156b2f

> Task :website:setupDockerContainer

> Task :website:installDependencies
yarn install v1.22.17
warning Skipping preferred cache folder "/.cache/yarn" because it is not writable.
warning Selected the next writable cache folder in the list, will be "/tmp/.yarn-cache-1017".
[1/4] Resolving packages...
[2/4] Fetching packages...
[3/4] Linking dependencies...
[4/4] Building fresh packages...
Done in 6.18s.

> Task :website:initGitSubmodules
Submodule '.github/actions/cancel-workflow-runs' (https://github.com/potiuk/cancel-workflow-runs) registered for path '.github/actions/cancel-workflow-runs'
Submodule '.github/actions/github-push-action' (https://github.com/ad-m/github-push-action) registered for path '.github/actions/github-push-action'
Submodule '.github/actions/gradle-command-action' (https://github.com/eskatos/gradle-command-action) registered for path '.github/actions/gradle-command-action'
Submodule 'website/www/site/themes/docsy' (https://github.com/google/docsy.git) registered for path 'website/www/site/themes/docsy'
Cloning into '/opt/.github/actions/cancel-workflow-runs'...
Cloning into '/opt/.github/actions/github-push-action'...
Cloning into '/opt/.github/actions/gradle-command-action'...
Cloning into '/opt/website/www/site/themes/docsy'...
Submodule path '.github/actions/cancel-workflow-runs': checked out '953e057dc81d3458935a18d1184c386b0f6b5738'
Submodule path '.github/actions/github-push-action': checked out '057a6ba835d986bfe495dd476a6c4db1d5f9503c'
Submodule path '.github/actions/gradle-command-action': checked out '90ccf054e6b9905f30f98c938bce4c6acd323b6b'
Submodule path 'website/www/site/themes/docsy': checked out '8b786354829536454688df1e63b9cad792f68562'
Submodule 'assets/vendor/Font-Awesome' (https://github.com/FortAwesome/Font-Awesome.git) registered for path 'website/www/site/themes/docsy/assets/vendor/Font-Awesome'
Submodule 'assets/vendor/bootstrap' (https://github.com/twbs/bootstrap.git) registered for path 'website/www/site/themes/docsy/assets/vendor/bootstrap'
Cloning into '/opt/website/www/site/themes/docsy/assets/vendor/Font-Awesome'...
Cloning into '/opt/website/www/site/themes/docsy/assets/vendor/bootstrap'...
Submodule path 'website/www/site/themes/docsy/assets/vendor/Font-Awesome': checked out '538a5bc4cf7989821d052e3ff919e2bead07021c'
Submodule path 'website/www/site/themes/docsy/assets/vendor/bootstrap': checked out '3b558734382ce58b51e5fc676453bfd53bba9201'

> Task :website:buildCodeSamples
yarn run v1.22.17
warning Skipping preferred cache folder "/.cache/yarn" because it is not writable.
warning Selected the next writable cache folder in the list, will be "/tmp/.yarn-cache-1017".
$ ./build_code_samples.sh
warning Cannot find a suitable global folder. Tried these: "/usr/local, /.yarn"
Working directory: /opt/website/www
Dist directory: ./site/code_samples
mkdir: created directory './site/code_samples'
Done in 2.10s.

> Task :website:buildLocalWebsite
yarn run v1.22.17
warning Skipping preferred cache folder "/.cache/yarn" because it is not writable.
warning Selected the next writable cache folder in the list, will be "/tmp/.yarn-cache-1017".
$ cross-env HUGO_ENV=production hugo --minify -d ../dist -s site -v -d /opt/build/website/generated-local-content --config /opt/website/www/site/config.toml
warning Cannot find a suitable global folder. Tried these: "/usr/local, /.yarn"
INFO 2022/01/10 12:20:29 Using config file: 
Building sites … INFO 2022/01/10 12:20:29 syncing static files to /opt/build/website/generated-local-content/
INFO 2022/01/10 12:20:34 postcss: use config file /opt/website/www/site/themes/docsy/postcss.config.js

  Replace Autoprefixer browsers option to Browserslist config.
  Use browserslist key in package.json or .browserslistrc file.

  Using browsers option can cause errors. Browserslist config 
  can be used for Babel, Autoprefixer, postcss-normalize and other tools.

  If you really need to use option, rename it to overrideBrowserslist.

  Learn more at:
  https://github.com/browserslist/browserslist#readme
  https://twitter.com/browserslist


Browserslist: caniuse-lite is outdated. Please run:
npx browserslist@latest --update-db

Why you should do it regularly:
https://github.com/browserslist/browserslist#browsers-data-updating

                   | EN   
-------------------+------
  Pages            | 372  
  Paginator pages  |   0  
  Non-page files   |   0  
  Static files     | 269  
  Processed images |   0  
  Aliases          | 130  
  Sitemaps         |   1  
  Cleaned          |   0  

Total in 14745 ms
Done in 16.31s.

> Task :website:testWebsite
/usr/bin/lynx
Working directory: /opt/website/www
Dist directory: /opt/build/website/generated-local-content

Found 459 HTML files.
Searching links.
Found 46845 links including 2029 unique external links.
Checking links.
[=>                                                  ] 1 / 2029  [=>                                                  ] 2 / 2029  [=>                                                  ] 3 / 2029  [=>                                                  ] 4 / 2029  [=>                                                  ] 5 / 2029  [=>                                                  ] 6 / 2029  curl: (22) The requested URL returned error: 403 Forbidden

http://jstorm.io/
[=>                                                  ] 7 / 2029  curl: (22) The requested URL returned error: 403 Forbidden

http://jstorm.io/QuickStart/Deploy/index.html
[=>                                                  ] 8 / 2029  [=>                                                  ] 9 / 2029  [=>                                                  ] 10 / 2029  [=>                                                  ] 11 / 2029  [=>                                                  ] 12 / 2029  [=>                                                  ] 13 / 2029  [=>                                                  ] 14 / 2029  [=>                                                  ] 15 / 2029  [=>                                                  ] 16 / 2029  [=>                                                  ] 17 / 2029  [=>                                                  ] 18 / 2029  [=>                                                  ] 19 / 2029  [=>                                                  ] 20 / 2029  [=>                                                  ] 21 / 2029  [=>                                                  ] 22 / 2029  [=>                                                  ] 23 / 2029  [=>                                                  ] 24 / 2029  [=>                                                  ] 25 / 2029  [=>                                                  ] 26 / 2029  [=>                                                  ] 27 / 2029  [=>                                                  ] 28 / 2029  [=>                                                  ] 29 / 2029  [=>                                                  ] 30 / 2029  [=>                                                  ] 31 / 2029  [=>                                                  ] 32 / 2029  [=>                                                  ] 33 / 2029  [=>                                                  ] 34 / 2029  [=>                                                  ] 35 / 2029  [=>                                                  ] 36 / 2029  [=>                                                  ] 37 / 2029  [=>                                                  ] 38 / 2029  [=>                                                  ] 39 / 2029  [=>                                                  ] 40 / 2029  [=>                                                  ] 41 / 2029  [==>                                                 ] 42 / 2029  [==>                                                 ] 43 / 2029  [==>                                                 ] 44 / 2029  [==>                                                 ] 45 / 2029  [==>                                                 ] 46 / 2029  [==>                                                 ] 47 / 2029  [==>                                                 ] 48 / 2029  [==>                                                 ] 49 / 2029  [==>                                                 ] 50 / 2029  [==>                                                 ] 51 / 2029  [==>                                                 ] 52 / 2029  [==>                                                 ] 53 / 2029  [==>                                                 ] 54 / 2029  [==>                                                 ] 55 / 2029  [==>                                                 ] 56 / 2029  [==>                                                 ] 57 / 2029  [==>                                                 ] 58 / 2029  [==>                                                 ] 59 / 2029  [==>                                                 ] 60 / 2029  [==>                                                 ] 61 / 2029  [==>                                                 ] 62 / 2029  [==>                                                 ] 63 / 2029  [==>                                                 ] 64 / 2029  [==>                                                 ] 65 / 2029  [==>                                                 ] 66 / 2029  [==>                                                 ] 67 / 2029  [==>                                                 ] 68 / 2029  [==>                                                 ] 69 / 2029  [==>                                                 ] 70 / 2029  [==>                                                 ] 71 / 2029  [==>                                                 ] 72 / 2029  [==>                                                 ] 73 / 2029  [==>                                                 ] 74 / 2029  [==>                                                 ] 75 / 2029  [==>                                                 ] 76 / 2029  [==>                                                 ] 77 / 2029  [==>                                                 ] 78 / 2029  [==>                                                 ] 79 / 2029  [==>                                                 ] 80 / 2029  [==>                                                 ] 81 / 2029  [==>                                                 ] 82 / 2029  [===>                                                ] 83 / 2029  [===>                                                ] 84 / 2029  [===>                                                ] 85 / 2029  [===>                                                ] 86 / 2029  [===>                                                ] 87 / 2029  [===>                                                ] 88 / 2029  [===>                                                ] 89 / 2029  [===>                                                ] 90 / 2029  [===>                                                ] 91 / 2029  [===>                                                ] 92 / 2029  [===>                                                ] 93 / 2029  [===>                                                ] 94 / 2029  [===>                                                ] 95 / 2029  [===>                                                ] 96 / 2029  [===>                                                ] 97 / 2029  [===>                                                ] 98 / 2029  [===>                                                ] 99 / 2029  [===>                                                ] 100 / 2029  [===>                                                ] 101 / 2029  [===>                                                ] 102 / 2029  [===>                                                ] 103 / 2029  [===>                                                ] 104 / 2029  [===>                                                ] 105 / 2029  [===>                                                ] 106 / 2029  [===>                                                ] 107 / 2029  [===>                                                ] 108 / 2029  [===>                                                ] 109 / 2029  [===>                                                ] 110 / 2029  [===>                                                ] 111 / 2029  [===>                                                ] 112 / 2029  [===>                                                ] 113 / 2029  [===>                                                ] 114 / 2029  [===>                                                ] 115 / 2029  [===>                                                ] 116 / 2029  [===>                                                ] 117 / 2029  [===>                                                ] 118 / 2029  [===>                                                ] 119 / 2029  [===>                                                ] 120 / 2029  [===>                                                ] 121 / 2029  [===>                                                ] 122 / 2029  [====>                                               ] 123 / 2029  [====>                                               ] 124 / 2029  [====>                                               ] 125 / 2029  [====>                                               ] 126 / 2029  [====>                                               ] 127 / 2029  [====>                                               ] 128 / 2029  [====>                                               ] 129 / 2029  [====>                                               ] 130 / 2029  [====>                                               ] 131 / 2029  [====>                                               ] 132 / 2029  [====>                                               ] 133 / 2029  [====>                                               ] 134 / 2029  [====>                                               ] 135 / 2029  [====>                                               ] 136 / 2029  [====>                                               ] 137 / 2029  [====>                                               ] 138 / 2029  [====>                                               ] 139 / 2029  [====>                                               ] 140 / 2029  [====>                                               ] 141 / 2029  [====>                                               ] 142 / 2029  [====>                                               ] 143 / 2029  [====>                                               ] 144 / 2029  [====>                                               ] 145 / 2029  [====>                                               ] 146 / 2029  [====>                                               ] 147 / 2029  [====>                                               ] 148 / 2029  [====>                                               ] 149 / 2029  [====>                                               ] 150 / 2029  [====>                                               ] 151 / 2029  [====>                                               ] 152 / 2029  [====>                                               ] 153 / 2029  [====>                                               ] 154 / 2029  [====>                                               ] 155 / 2029  [====>                                               ] 156 / 2029  [====>                                               ] 157 / 2029  [====>                                               ] 158 / 2029  [====>                                               ] 159 / 2029  [====>                                               ] 160 / 2029  [====>                                               ] 161 / 2029  [====>                                               ] 162 / 2029  [====>                                               ] 163 / 2029  [=====>                                              ] 164 / 2029  [=====>                                              ] 165 / 2029  [=====>                                              ] 166 / 2029  [=====>                                              ] 167 / 2029  [=====>                                              ] 168 / 2029  [=====>                                              ] 169 / 2029  [=====>                                              ] 170 / 2029  [=====>                                              ] 171 / 2029  [=====>                                              ] 172 / 2029  [=====>                                              ] 173 / 2029  [=====>                                              ] 174 / 2029  [=====>                                              ] 175 / 2029  [=====>                                              ] 176 / 2029  [=====>                                              ] 177 / 2029  [=====>                                              ] 178 / 2029  [=====>                                              ] 179 / 2029  [=====>                                              ] 180 / 2029  [=====>                                              ] 181 / 2029  [=====>                                              ] 182 / 2029  [=====>                                              ] 183 / 2029  [=====>                                              ] 184 / 2029  [=====>                                              ] 185 / 2029  [=====>                                              ] 186 / 2029  [=====>                                              ] 187 / 2029  [=====>                                              ] 188 / 2029  [=====>                                              ] 189 / 2029  [=====>                                              ] 190 / 2029  [=====>                                              ] 191 / 2029  [=====>                                              ] 192 / 2029  [=====>                                              ] 193 / 2029  [=====>                                              ] 194 / 2029  [=====>                                              ] 195 / 2029  [=====>                                              ] 196 / 2029  [=====>                                              ] 197 / 2029  [=====>                                              ] 198 / 2029  [=====>                                              ] 199 / 2029  [=====>                                              ] 200 / 2029  [=====>                                              ] 201 / 2029  [=====>                                              ] 202 / 2029  [=====>                                              ] 203 / 2029  [======>                                             ] 204 / 2029  [======>                                             ] 205 / 2029  [======>                                             ] 206 / 2029  [======>                                             ] 207 / 2029  [======>                                             ] 208 / 2029  [======>                                             ] 209 / 2029  [======>                                             ] 210 / 2029  [======>                                             ] 211 / 2029  [======>                                             ] 212 / 2029  [======>                                             ] 213 / 2029  [======>                                             ] 214 / 2029  [======>                                             ] 215 / 2029  [======>                                             ] 216 / 2029  [======>                                             ] 217 / 2029  [======>                                             ] 218 / 2029  [======>                                             ] 219 / 2029  [======>                                             ] 220 / 2029  [======>                                             ] 221 / 2029  [======>                                             ] 222 / 2029  [======>                                             ] 223 / 2029  [======>                                             ] 224 / 2029  [======>                                             ] 225 / 2029  [======>                                             ] 226 / 2029  [======>                                             ] 227 / 2029  [======>                                             ] 228 / 2029  [======>                                             ] 229 / 2029  [======>                                             ] 230 / 2029  [======>                                             ] 231 / 2029  [======>                                             ] 232 / 2029  [======>                                             ] 233 / 2029  [======>                                             ] 234 / 2029  [======>                                             ] 235 / 2029  [======>                                             ] 236 / 2029  [======>                                             ] 237 / 2029  [======>                                             ] 238 / 2029  [======>                                             ] 239 / 2029  [======>                                             ] 240 / 2029  [======>                                             ] 241 / 2029  [======>                                             ] 242 / 2029  [======>                                             ] 243 / 2029  [======>                                             ] 244 / 2029  [=======>                                            ] 245 / 2029  [=======>                                            ] 246 / 2029  [=======>                                            ] 247 / 2029  [=======>                                            ] 248 / 2029  [=======>                                            ] 249 / 2029  [=======>                                            ] 250 / 2029  [=======>                                            ] 251 / 2029  [=======>                                            ] 252 / 2029  [=======>                                            ] 253 / 2029  [=======>                                            ] 254 / 2029  [=======>                                            ] 255 / 2029  [=======>                                            ] 256 / 2029  [=======>                                            ] 257 / 2029  [=======>                                            ] 258 / 2029  [=======>                                            ] 259 / 2029  [=======>                                            ] 260 / 2029  [=======>                                            ] 261 / 2029  [=======>                                            ] 262 / 2029  [=======>                                            ] 263 / 2029  [=======>                                            ] 264 / 2029  [=======>                                            ] 265 / 2029  [=======>                                            ] 266 / 2029  [=======>                                            ] 267 / 2029  [=======>                                            ] 268 / 2029  [=======>                                            ] 269 / 2029  [=======>                                            ] 270 / 2029  [=======>                                            ] 271 / 2029  [=======>                                            ] 272 / 2029  [=======>                                            ] 273 / 2029  [=======>                                            ] 274 / 2029  [=======>                                            ] 275 / 2029  [=======>                                            ] 276 / 2029  [=======>                                            ] 277 / 2029  [=======>                                            ] 278 / 2029  [=======>                                            ] 279 / 2029  [=======>                                            ] 280 / 2029  [=======>                                            ] 281 / 2029  [=======>                                            ] 282 / 2029  [=======>                                            ] 283 / 2029  [=======>                                            ] 284 / 2029  [========>                                           ] 285 / 2029  [========>                                           ] 286 / 2029  [========>                                           ] 287 / 2029  [========>                                           ] 288 / 2029  [========>                                           ] 289 / 2029  [========>                                           ] 290 / 2029  [========>                                           ] 291 / 2029  [========>                                           ] 292 / 2029  [========>                                           ] 293 / 2029  [========>                                           ] 294 / 2029  [========>                                           ] 295 / 2029  [========>                                           ] 296 / 2029  [========>                                           ] 297 / 2029  [========>                                           ] 298 / 2029  [========>                                           ] 299 / 2029  [========>                                           ] 300 / 2029  [========>                                           ] 301 / 2029  [========>                                           ] 302 / 2029  [========>                                           ] 303 / 2029  [========>                                           ] 304 / 2029  [========>                                           ] 305 / 2029  [========>                                           ] 306 / 2029  [========>                                           ] 307 / 2029  [========>                                           ] 308 / 2029  [========>                                           ] 309 / 2029  [========>                                           ] 310 / 2029  [========>                                           ] 311 / 2029  [========>                                           ] 312 / 2029  [========>                                           ] 313 / 2029  [========>                                           ] 314 / 2029  [========>                                           ] 315 / 2029  [========>                                           ] 316 / 2029  [========>                                           ] 317 / 2029  [========>                                           ] 318 / 2029  [========>                                           ] 319 / 2029  [========>                                           ] 320 / 2029  [========>                                           ] 321 / 2029  [========>                                           ] 322 / 2029  [========>                                           ] 323 / 2029  [========>                                           ] 324 / 2029  [========>                                           ] 325 / 2029  [=========>                                          ] 326 / 2029  [=========>                                          ] 327 / 2029  [=========>                                          ] 328 / 2029  [=========>                                          ] 329 / 2029  [=========>                                          ] 330 / 2029  [=========>                                          ] 331 / 2029  [=========>                                          ] 332 / 2029  [=========>                                          ] 333 / 2029  [=========>                                          ] 334 / 2029  [=========>                                          ] 335 / 2029  [=========>                                          ] 336 / 2029  [=========>                                          ] 337 / 2029  [=========>                                          ] 338 / 2029  [=========>                                          ] 339 / 2029  [=========>                                          ] 340 / 2029  [=========>                                          ] 341 / 2029  [=========>                                          ] 342 / 2029  [=========>                                          ] 343 / 2029  [=========>                                          ] 344 / 2029  [=========>                                          ] 345 / 2029  [=========>                                          ] 346 / 2029  [=========>                                          ] 347 / 2029  [=========>                                          ] 348 / 2029  [=========>                                          ] 349 / 2029  [=========>                                          ] 350 / 2029  [=========>                                          ] 351 / 2029  [=========>                                          ] 352 / 2029  [=========>                                          ] 353 / 2029  [=========>                                          ] 354 / 2029  [=========>                                          ] 355 / 2029  [=========>                                          ] 356 / 2029  [=========>                                          ] 357 / 2029  [=========>                                          ] 358 / 2029  [=========>                                          ] 359 / 2029  [=========>                                          ] 360 / 2029  [=========>                                          ] 361 / 2029  [=========>                                          ] 362 / 2029  [=========>                                          ] 363 / 2029  [=========>                                          ] 364 / 2029  [=========>                                          ] 365 / 2029  [=========>                                          ] 366 / 2029  [==========>                                         ] 367 / 2029  [==========>                                         ] 368 / 2029  [==========>                                         ] 369 / 2029  [==========>                                         ] 370 / 2029  [==========>                                         ] 371 / 2029  [==========>                                         ] 372 / 2029  [==========>                                         ] 373 / 2029  [==========>                                         ] 374 / 2029  [==========>                                         ] 375 / 2029  [==========>                                         ] 376 / 2029  [==========>                                         ] 377 / 2029  [==========>                                         ] 378 / 2029  [==========>                                         ] 379 / 2029  [==========>                                         ] 380 / 2029  [==========>                                         ] 381 / 2029  [==========>                                         ] 382 / 2029  [==========>                                         ] 383 / 2029  [==========>                                         ] 384 / 2029  [==========>                                         ] 385 / 2029  [==========>                                         ] 386 / 2029  [==========>                                         ] 387 / 2029  [==========>                                         ] 388 / 2029  [==========>                                         ] 389 / 2029  [==========>                                         ] 390 / 2029  [==========>                                         ] 391 / 2029  [==========>                                         ] 392 / 2029  [==========>                                         ] 393 / 2029  [==========>                                         ] 394 / 2029  [==========>                                         ] 395 / 2029  [==========>                                         ] 396 / 2029  [==========>                                         ] 397 / 2029  [==========>                                         ] 398 / 2029  [==========>                                         ] 399 / 2029  curl: (22) The requested URL returned error: 404 

https://beam.apache.org/releases/pydoc/2.35.0/apache_beam.testing.util.html#apache_beam.testing.util.assert_that
[==========>                                         ] 400 / 2029  [==========>                                         ] 401 / 2029  [==========>                                         ] 402 / 2029  [==========>                                         ] 403 / 2029  [==========>                                         ] 404 / 2029  [==========>                                         ] 405 / 2029  [==========>                                         ] 406 / 2029  [===========>                                        ] 407 / 2029  [===========>                                        ] 408 / 2029  [===========>                                        ] 409 / 2029  [===========>                                        ] 410 / 2029  [===========>                                        ] 411 / 2029  [===========>                                        ] 412 / 2029  [===========>                                        ] 413 / 2029  [===========>                                        ] 414 / 2029  [===========>                                        ] 415 / 2029  [===========>                                        ] 416 / 2029  [===========>                                        ] 417 / 2029  [===========>                                        ] 418 / 2029  [===========>                                        ] 419 / 2029  [===========>                                        ] 420 / 2029  [===========>                                        ] 421 / 2029  [===========>                                        ] 422 / 2029  [===========>                                        ] 423 / 2029  [===========>                                        ] 424 / 2029  [===========>                                        ] 425 / 2029  [===========>                                        ] 426 / 2029  [===========>                                        ] 427 / 2029  [===========>                                        ] 428 / 2029  [===========>                                        ] 429 / 2029  [===========>                                        ] 430 / 2029  [===========>                                        ] 431 / 2029  [===========>                                        ] 432 / 2029  [===========>                                        ] 433 / 2029  [===========>                                        ] 434 / 2029  [===========>                                        ] 435 / 2029  [===========>                                        ] 436 / 2029  [===========>                                        ] 437 / 2029  [===========>                                        ] 438 / 2029  [===========>                                        ] 439 / 2029  [===========>                                        ] 440 / 2029  [===========>                                        ] 441 / 2029  [===========>                                        ] 442 / 2029  [===========>                                        ] 443 / 2029  [===========>                                        ] 444 / 2029  [===========>                                        ] 445 / 2029  [===========>                                        ] 446 / 2029  [===========>                                        ] 447 / 2029  [============>                                       ] 448 / 2029  [============>                                       ] 449 / 2029  [============>                                       ] 450 / 2029  [============>                                       ] 451 / 2029  [============>                                       ] 452 / 2029  [============>                                       ] 453 / 2029  [============>                                       ] 454 / 2029  [============>                                       ] 455 / 2029  [============>                                       ] 456 / 2029  [============>                                       ] 457 / 2029  [============>                                       ] 458 / 2029  [============>                                       ] 459 / 2029  [============>                                       ] 460 / 2029  [============>                                       ] 461 / 2029  [============>                                       ] 462 / 2029  [============>                                       ] 463 / 2029  [============>                                       ] 464 / 2029  [============>                                       ] 465 / 2029  [============>                                       ] 466 / 2029  [============>                                       ] 467 / 2029  [============>                                       ] 468 / 2029  [============>                                       ] 469 / 2029  [============>                                       ] 470 / 2029  [============>                                       ] 471 / 2029  [============>                                       ] 472 / 2029  [============>                                       ] 473 / 2029  [============>                                       ] 474 / 2029  [============>                                       ] 475 / 2029  [============>                                       ] 476 / 2029  [============>                                       ] 477 / 2029  [============>                                       ] 478 / 2029  [============>                                       ] 479 / 2029  [============>                                       ] 480 / 2029  [============>                                       ] 481 / 2029  [============>                                       ] 482 / 2029  [============>                                       ] 483 / 2029  [============>                                       ] 484 / 2029  [============>                                       ] 485 / 2029  [============>                                       ] 486 / 2029  [============>                                       ] 487 / 2029  [=============>                                      ] 488 / 2029  [=============>                                      ] 489 / 2029  [=============>                                      ] 490 / 2029  [=============>                                      ] 491 / 2029  [=============>                                      ] 492 / 2029  [=============>                                      ] 493 / 2029  [=============>                                      ] 494 / 2029  [=============>                                      ] 495 / 2029  [=============>                                      ] 496 / 2029  [=============>                                      ] 497 / 2029  [=============>                                      ] 498 / 2029  [=============>                                      ] 499 / 2029  [=============>                                      ] 500 / 2029  [=============>                                      ] 501 / 2029  [=============>                                      ] 502 / 2029  [=============>                                      ] 503 / 2029  [=============>                                      ] 504 / 2029  [=============>                                      ] 505 / 2029  [=============>                                      ] 506 / 2029  [=============>                                      ] 507 / 2029  [=============>                                      ] 508 / 2029  [=============>                                      ] 509 / 2029  [=============>                                      ] 510 / 2029  [=============>                                      ] 511 / 2029  [=============>                                      ] 512 / 2029  [=============>                                      ] 513 / 2029  [=============>                                      ] 514 / 2029  [=============>                                      ] 515 / 2029  [=============>                                      ] 516 / 2029  [=============>                                      ] 517 / 2029  [=============>                                      ] 518 / 2029  [=============>                                      ] 519 / 2029  [=============>                                      ] 520 / 2029  [=============>                                      ] 521 / 2029  [=============>                                      ] 522 / 2029  [=============>                                      ] 523 / 2029  [=============>                                      ] 524 / 2029  [=============>                                      ] 525 / 2029  [=============>                                      ] 526 / 2029  [=============>                                      ] 527 / 2029  [=============>                                      ] 528 / 2029  [==============>                                     ] 529 / 2029  [==============>                                     ] 530 / 2029  [==============>                                     ] 531 / 2029  [==============>                                     ] 532 / 2029  [==============>                                     ] 533 / 2029  [==============>                                     ] 534 / 2029  [==============>                                     ] 535 / 2029  [==============>                                     ] 536 / 2029  [==============>                                     ] 537 / 2029  [==============>                                     ] 538 / 2029  [==============>                                     ] 539 / 2029  [==============>                                     ] 540 / 2029  [==============>                                     ] 541 / 2029  [==============>                                     ] 542 / 2029  [==============>                                     ] 543 / 2029  [==============>                                     ] 544 / 2029  [==============>                                     ] 545 / 2029  [==============>                                     ] 546 / 2029  [==============>                                     ] 547 / 2029  [==============>                                     ] 548 / 2029  [==============>                                     ] 549 / 2029  [==============>                                     ] 550 / 2029  [==============>                                     ] 551 / 2029  [==============>                                     ] 552 / 2029  [==============>                                     ] 553 / 2029  [==============>                                     ] 554 / 2029  [==============>                                     ] 555 / 2029  [==============>                                     ] 556 / 2029  [==============>                                     ] 557 / 2029  [==============>                                     ] 558 / 2029  [==============>                                     ] 559 / 2029  [==============>                                     ] 560 / 2029  [==============>                                     ] 561 / 2029  [==============>                                     ] 562 / 2029  [==============>                                     ] 563 / 2029  [==============>                                     ] 564 / 2029  [==============>                                     ] 565 / 2029  [==============>                                     ] 566 / 2029  [==============>                                     ] 567 / 2029  [==============>                                     ] 568 / 2029  [===============>                                    ] 569 / 2029  [===============>                                    ] 570 / 2029  [===============>                                    ] 571 / 2029  [===============>                                    ] 572 / 2029  [===============>                                    ] 573 / 2029  [===============>                                    ] 574 / 2029  [===============>                                    ] 575 / 2029  [===============>                                    ] 576 / 2029  [===============>                                    ] 577 / 2029  [===============>                                    ] 578 / 2029  [===============>                                    ] 579 / 2029  [===============>                                    ] 580 / 2029  [===============>                                    ] 581 / 2029  [===============>                                    ] 582 / 2029  [===============>                                    ] 583 / 2029  [===============>                                    ] 584 / 2029  [===============>                                    ] 585 / 2029  [===============>                                    ] 586 / 2029  [===============>                                    ] 587 / 2029  [===============>                                    ] 588 / 2029  [===============>                                    ] 589 / 2029  [===============>                                    ] 590 / 2029  [===============>                                    ] 591 / 2029  [===============>                                    ] 592 / 2029  [===============>                                    ] 593 / 2029  [===============>                                    ] 594 / 2029  [===============>                                    ] 595 / 2029  [===============>                                    ] 596 / 2029  [===============>                                    ] 597 / 2029  [===============>                                    ] 598 / 2029  [===============>                                    ] 599 / 2029  [===============>                                    ] 600 / 2029  [===============>                                    ] 601 / 2029  [===============>                                    ] 602 / 2029  [===============>                                    ] 603 / 2029  [===============>                                    ] 604 / 2029  [===============>                                    ] 605 / 2029  
> Task :website:testWebsite FAILED
The message received from the daemon indicates that the daemon has disappeared.
Build request sent: Build{id=6ebb4a09-0e85-451b-9ad9-5e3b749539c9, currentDir=<https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/ws/src}>
Attempting to read last messages from the daemon log...
Daemon pid: 21126
  log file: /home/jenkins/.gradle/daemon/7.3.2/daemon-21126.out.log
----- Last  20 lines from daemon log file - daemon-21126.out.log -----
[===============>                                    ] 602 / 2029  
[===============>                                    ] 603 / 2029  
[===============>                                    ] 604 / 2029  
[===============>                                    ] 605 / 2029  Remove shutdown hook failed
java.lang.IllegalStateException: Shutdown in progress
	at java.lang.ApplicationShutdownHooks.remove(ApplicationShutdownHooks.java:82)
	at java.lang.Runtime.removeShutdownHook(Runtime.java:239)
	at org.gradle.process.internal.shutdown.ShutdownHooks.removeShutdownHook(ShutdownHooks.java:38)
	at org.gradle.process.internal.DefaultExecHandle.setEndStateInfo(DefaultExecHandle.java:208)
	at org.gradle.process.internal.DefaultExecHandle.aborted(DefaultExecHandle.java:365)
	at org.gradle.process.internal.ExecHandleRunner.completed(ExecHandleRunner.java:108)
	at org.gradle.process.internal.ExecHandleRunner.run(ExecHandleRunner.java:84)
	at org.gradle.internal.operations.CurrentBuildOperationPreservingRunnable.run(CurrentBuildOperationPreservingRunnable.java:42)
	at org.gradle.internal.concurrent.ExecutorPolicy$CatchAndRecordFailures.onExecute(ExecutorPolicy.java:64)
	at org.gradle.internal.concurrent.ManagedExecutorImpl$1.run(ManagedExecutorImpl.java:48)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:61)
	at java.lang.Thread.run(Thread.java:748)
Daemon vm is shutting down... The daemon has exited normally or was terminated in response to a user interrupt.
----- End of the daemon log -----


FAILURE: Build failed with an exception.

* What went wrong:
Gradle build daemon disappeared unexpectedly (it may have been killed or may have crashed)

* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.

* Get more help at https://help.gradle.org
> Task :website:stopAndRemoveDockerContainer
Build step 'Invoke Gradle script' changed build result to FAILURE
Build step 'Invoke Gradle script' marked build as failure

---------------------------------------------------------------------
To unsubscribe, e-mail: builds-unsubscribe@beam.apache.org
For additional commands, e-mail: builds-help@beam.apache.org


Jenkins build is back to normal : beam_PreCommit_Website_Cron #4860

Posted by Apache Jenkins Server <je...@builds.apache.org>.
See <https://ci-beam.apache.org/job/beam_PreCommit_Website_Cron/4860/display/redirect?page=changes>


---------------------------------------------------------------------
To unsubscribe, e-mail: builds-unsubscribe@beam.apache.org
For additional commands, e-mail: builds-help@beam.apache.org