From 2d1e8f2604cb10de8a25a7f248335351eaa172a9 Mon Sep 17 00:00:00 2001 From: brais <26645694+braisvq1996@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:14:16 +0200 Subject: [PATCH 1/2] Fix permision for golden tests --- common/jenkins-agents/golang/docker/Dockerfile.ubi8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/jenkins-agents/golang/docker/Dockerfile.ubi8 b/common/jenkins-agents/golang/docker/Dockerfile.ubi8 index 083574d85..08e885aa7 100644 --- a/common/jenkins-agents/golang/docker/Dockerfile.ubi8 +++ b/common/jenkins-agents/golang/docker/Dockerfile.ubi8 @@ -22,6 +22,6 @@ RUN /tmp/install-golangci-lint.sh -b /usr/local/bin $golangciVersion && \ RUN go install github.com/jstemmer/go-junit-report/v2@v2.1.0 -RUN mkdir -p /home/jenkins/go && chmod g+w /home/jenkins/go +RUN mkdir -p /home/jenkins/go && chmod -R g+w /home/jenkins WORKDIR /go From d145d35a03cad3af7e1307abadb078acab7a9c30 Mon Sep 17 00:00:00 2001 From: brais <26645694+braisvq1996@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:37:31 +0200 Subject: [PATCH 2/2] Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 831292611..fd8d42fcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - Update Rust Axum Quickstarter to Rust 1.80.1 and improve Agent build configuration ([#1040](https://github.com/opendevstack/ods-quickstarters/pull/1040)) - Support for Python3.12, and maintenance of be-python-flask quickstarter and python Jenkins agent ([#1030](https://github.com/opendevstack/ods-quickstarters/pull/1030)) - Added custom reporter to Cypress Quickstarter and update dependencies ([#1034](https://github.com/opendevstack/ods-quickstarters/pull/1034)) +- Fix permissions in Golang agent for the golden tests ([#1052](https://github.com/opendevstack/ods-quickstarters/pull/1052)) ### Added