Stewart X Addison
Stewart X Addison
Noting that `ls -l` on the host shows that the user of the files under build-scripts\job\\jdk21u\windbld@tmp\durable*\` (including `script.sh.copy`) as the user that jenkins is running under on the host. When...
The attempt to use `.gitconfig` in `C:\jw` isn't working. If Iissue a `git config --global -l` from within the workflow I get a failure: ``` 12:22:29 + git config --global...
Ref: https://ci.adoptium.net/job/build-scripts/job/jobs/job/jdk21u/job/windbld/ Note that after a successful ([ish](https://github.com/adoptium/infrastructure/issues/3718)) jdk8u build (169) I had two consecutive failures trying to kick off jdk21u (170,171), but then the third one (172) passed that...
Based on some investigations in https://github.com/adoptium/infrastructure/issues/3723 I tried changing the ownership of the `@tmp` directory so that it was definitely owned by `ContainerUser` but that didn't make a difference. The...
Answer: No. After jdk21u completed (subject to https://github.com/adoptium/infrastructure/issues/3709) in windbld run [242](https://ci.adoptium.net/job/build-scripts/job/jobs/job/jdk21u/job/windbld/242), jobs [244](https://ci.adoptium.net/job/build-scripts/job/jobs/job/jdk21u/job/windbld/244) and [245](https://ci.adoptium.net/job/build-scripts/job/jobs/job/jdk21u/job/windbld/245) failed, but the following [246](https://ci.adoptium.net/job/build-scripts/job/jobs/job/jdk21u/job/windbld/242) passed - all were run after clearing out the...
I've just tested this using a standalone jenkins pipeline: ``` pipeline { agent any stages { stage('Test Docker on Windows') { agent { docker { image 'notrhel_build_image' } } steps...
Running the same jobs with `bat()` instead of `sh()` appears to pass reliably. Intriguing ...
Noting also that having git bash in the path first (before the Cygwin one) makes no difference - the error still occurs.
Memo to self: We have some functions executed in Windows pipelines that are run on either Windows or UNIX systems depending on the pipeline - specifically the writeMetadata function https://github.com/adoptium/ci-jenkins-pipelines/blob/4bfdbb67722dd7e96b256511ac6586e749650524/pipelines/build/common/openjdk_build_pipeline.groovy#L1280...
> Memo to self: We have some functions executed in Windows pipelines that are run on either Windows or UNIX systems depending on the pipeline Now sorted that case -...