Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-e2e-bare-metal-tests
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
commands: openshift-microshift-e2e-bare-metal-tests-commands.sh
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-e2e-metal-tests
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
commands: openshift-microshift-e2e-metal-tests-commands.sh
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-e2e-openshift-conformance-build-and-run
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
commands: openshift-microshift-e2e-openshift-conformance-build-and-run-commands.sh
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,15 @@ function download_microshift_scripts() {
}

function ci_get_clonerefs() {
local arch
arch=$(uname -m)
case "$arch" in
x86_64) arch="amd64" ;;
aarch64) arch="arm64" ;;
*) echo "Unsupported architecture: $arch"; exit 1 ;;
esac
curl -L \
"https://github.com/microshift-io/prow/releases/download/nightly/clonerefs-linux-$(go env GOARCH)" \
"https://github.com/microshift-io/prow/releases/download/nightly/clonerefs-linux-${arch}" \
-o /tmp/clonerefs
chmod +x /tmp/clonerefs
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-conformance-setup
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
grace_period: 10m
commands: openshift-microshift-infra-conformance-setup-commands.sh
resources:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-install-from-source
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
grace_period: 10m
commands: openshift-microshift-infra-install-from-source-commands.sh
resources:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-iso-boot
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
grace_period: 10m
commands: openshift-microshift-infra-iso-boot-commands.sh
resources:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-pcp
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
commands: openshift-microshift-infra-pcp-commands.sh
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-pmlogs
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
commands: openshift-microshift-infra-pmlogs-commands.sh
resources:
requests:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ref:
as: openshift-microshift-infra-rpm-install-aws
from: root
from_image:
name: release
namespace: openshift
tag: rhel-9-release-golang-1.22-openshift-4.18
cli: latest
grace_period: 10m
commands: openshift-microshift-infra-rpm-install-aws-commands.sh
Expand Down