From 4ee80bb4a8588029ba9197260bdd4e416e7e5959 Mon Sep 17 00:00:00 2001 From: David Elie-Dit-Cosaque Date: Fri, 8 May 2026 09:24:00 -0400 Subject: [PATCH 1/3] TEST -nly Update PTP test commands and cluster setup scripts - Change the repository URL for cloning the PTP operator conformance test to a specific branch. - Set the SKIP_OCP_INSTALL variable to "true" in the cluster setup script to bypass OpenShift installation. --- .../ptp-cluster-setup/telco5g-ptp-cluster-setup-commands.sh | 2 +- .../telco5g/ptp/tests/telco5g-ptp-tests-commands.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci-operator/step-registry/telco5g/ptp-cluster-setup/telco5g-ptp-cluster-setup-commands.sh b/ci-operator/step-registry/telco5g/ptp-cluster-setup/telco5g-ptp-cluster-setup-commands.sh index 681e86264ac49..58bbf3480245f 100644 --- a/ci-operator/step-registry/telco5g/ptp-cluster-setup/telco5g-ptp-cluster-setup-commands.sh +++ b/ci-operator/step-registry/telco5g/ptp-cluster-setup/telco5g-ptp-cluster-setup-commands.sh @@ -298,7 +298,7 @@ log_chronyd_status() { KUBECONFIG=$SHARED_DIR/kubeconfig oc debug node/cnfdf32.telco5gran.eng.rdu2.redhat.com -- chroot /host systemctl status chronyd || true } - +SKIP_OCP_INSTALL="true" #Set status and run playbooks status=0 diff --git a/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh b/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh index 8d75413c30963..f78917908ed99 100644 --- a/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh +++ b/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh @@ -405,7 +405,7 @@ retry_with_timeout 400 5 kubectl rollout status daemonset linuxptp-daemon -nopen cd - echo "running conformance tests from branch ${TEST_BRANCH}" # always run test from latest upstream -git clone https://github.com/k8snetworkplumbingwg/ptp-operator.git -b "${TEST_BRANCH}" ptp-operator-conformance-test +git clone https://github.com/edcdavid/ptp-operator-upstream.git -b fix-wpc1 ptp-operator-conformance-test cd ptp-operator-conformance-test From abd4182ec805bc3935cc86eb7d82fa44fdebc89c Mon Sep 17 00:00:00 2001 From: David Elie-Dit-Cosaque Date: Fri, 8 May 2026 17:38:41 -0400 Subject: [PATCH 2/3] Update SKIP_INTERFACES in PTP test commands script - Added 'eno12399' to the SKIP_INTERFACES variable in the telco5g PTP test commands script to refine interface exclusions during testing. --- .../telco5g/ptp/tests/telco5g-ptp-tests-commands.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh b/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh index f78917908ed99..12fdb71ff09df 100644 --- a/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh +++ b/ci-operator/step-registry/telco5g/ptp/tests/telco5g-ptp-tests-commands.sh @@ -469,7 +469,7 @@ mkdir -p $LOG_ARTIFACTS_DIR export JUNIT_OUTPUT_DIR=${ARTIFACT_DIR} export PTP_LOG_LEVEL=debug -export SKIP_INTERFACES=eno8303np0,eno8403np1,eno8503np2,eno8603np3,eno12409,eno8303,ens7f0np0,ens7f1np1,eno8403,ens6f0np0,ens6f1np1,eno8303np0,eno8403np1,eno8503np2,eno8603np3 +export SKIP_INTERFACES=eno8303np0,eno8403np1,eno8503np2,eno8603np3,eno12409,eno8303,ens7f0np0,ens7f1np1,eno8403,ens6f0np0,ens6f1np1,eno8303np0,eno8403np1,eno8503np2,eno8603np3,eno12399 export PTP_TEST_CONFIG_FILE=${SHARED_DIR}/test-config.yaml # wait before first run From 71536b37ed569bb80f7d8404958fd708ac7f19cc Mon Sep 17 00:00:00 2001 From: David Elie-Dit-Cosaque Date: Fri, 8 May 2026 20:17:10 -0400 Subject: [PATCH 3/3] trigger CI re-run