Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix permision for golden tests #1052

Merged
merged 2 commits into from
Sep 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion common/jenkins-agents/golang/docker/Dockerfile.ubi8
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ RUN /tmp/install-golangci-lint.sh -b /usr/local/bin $golangciVersion && \

RUN go install github.com/jstemmer/go-junit-report/[email protected]

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