Skip to content

Commit

Permalink
finally results are referenced differently
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Cerven <[email protected]>
  • Loading branch information
rcerven committed Feb 29, 2024
1 parent 14c34f7 commit 5bb2621
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion atomic_reactor/plugins/gather_builds_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
This software may be modified and distributed under the terms
of the BSD license. See the LICENSE file for details.
"""
import json
from typing import Any, Dict, Optional

from atomic_reactor.plugin import Plugin
Expand Down Expand Up @@ -110,7 +111,7 @@ def _get_build_metadata(self, platform: str):
"""
pullspec_image = self._determine_image_pullspec(platform)
buildroot = get_buildroot(platform)
build_host = self._get_hostname_for_platform(platform)
build_host = json.loads(self._get_hostname_for_platform(platform))
output_files, _ = get_output(workflow=self.workflow, buildroot_id=build_host,
pullspec=pullspec_image, platform=platform,
source_build=False)
Expand Down
2 changes: 1 addition & 1 deletion requirements-devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ opentelemetry-semantic-conventions==0.40b0
# opentelemetry-sdk
opentelemetry-util-http==0.40b0
# via opentelemetry-instrumentation-requests
osbs-client @ git+https://github.com/containerbuildsystem/osbs-client@2bd03f4e0e5edc474b6236c5c128620d988f79a3
osbs-client @ git+https://github.com/rcerven/osbs-client@b8f23412970b9e94154df79505324a91677c99cd
# via -r requirements.in
otel-extensions==0.2.5
# via -r otel-requirements.in
Expand Down
2 changes: 1 addition & 1 deletion requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jsonschema
paramiko>=2.10.1
PyYAML
ruamel.yaml
git+https://github.com/containerbuildsystem/osbs-client@2bd03f4e0e5edc474b6236c5c128620d988f79a3#egg=osbs-client
git+https://github.com/rcerven/osbs-client@b8f23412970b9e94154df79505324a91677c99cd#egg=osbs-client
# cannot build cryptography with rust for version >= 3.5
cryptography < 3.5
requests
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ opentelemetry-semantic-conventions==0.41b0
# opentelemetry-sdk
opentelemetry-util-http==0.41b0
# via opentelemetry-instrumentation-requests
osbs-client @ git+https://github.com/containerbuildsystem/osbs-client@2bd03f4e0e5edc474b6236c5c128620d988f79a3
osbs-client @ git+https://github.com/rcerven/osbs-client@b8f23412970b9e94154df79505324a91677c99cd
# via -r requirements.in
otel-extensions==0.2.5
# via -r otel-requirements.in
Expand Down
2 changes: 1 addition & 1 deletion tekton/pipelines/binary-container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
- name: platforms_result
value: $(tasks.binary-container-prebuild.results.platforms_result)
- name: annotations
value: $(tasks.binary-container-exit.results.annotations)
value: $(finally.binary-container-exit.results.annotations)

tasks:
- name: clone
Expand Down

0 comments on commit 5bb2621

Please sign in to comment.