Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 5 additions & 2 deletions go.spec
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
%define debug_package %{nil}
%undefine _missing_build_ids_terminate_build

%define _go_rel_major_minor 1.23
%define _go_rel_bugfix 7
%define _go_rel_major_minor 1.25
%define _go_rel_bugfix 8
%define _go_rel %{_go_rel_major_minor}.%{_go_rel_bugfix}
%define _go_patch 0

Expand Down Expand Up @@ -111,6 +111,9 @@ fi
%endif

%changelog
* Wed Apr 22 2026 Ryon Jensen <ryon.jensen@intel.com> - 1.25.8-1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wrong e-mail address

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- Update to version 1.25.8

* Tue Apr 08 2025 Tomasz Gromadzki <tomasz.gromadzki@intel.com> - 1.23.7-1
- Update to version 1.23.7

Expand Down
9 changes: 9 additions & 0 deletions packaging/Dockerfile.mockbuild
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ FROM fedora:$FVERSION
ARG FVERSION
LABEL maintainer="daos@daos.groups.io"

# Accept DAOS_NO_PROXY at build time
ARG DAOS_NO_PROXY
# Propagate into the build environment
ENV no_proxy=${DAOS_NO_PROXY}
ENV NO_PROXY=${DAOS_NO_PROXY}
# Persist into /etc/environment for use by shells and services
RUN echo "no_proxy=${DAOS_NO_PROXY}" >> /etc/environment && \
echo "NO_PROXY=${DAOS_NO_PROXY}" >> /etc/environment

# Use local repo server if present
ARG REPO_FILE_URL
ARG DAOS_LAB_CA_FILE_URL
Expand Down