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

Increase validation time #293

Closed
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
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# next version to be released
MODULE_VERSION=1.0.1
MODULE_VERSION=0.0.0
13 changes: 7 additions & 6 deletions scripts/verify-status.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ echo "Checking status of POST Jobs for Eventing-Manager"

REF_NAME="${1:-"main"}"
STATUS_URL="https://api.github.com/repos/kyma-project/eventing-manager/commits/${REF_NAME}/status"
fullstatus=`curl -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" ${STATUS_URL} | head -n 2 `
fullstatus=$(curl -L -H "Accept: application/vnd.github+json" -H "X-GitHub-Api-Version: 2022-11-28" ${STATUS_URL} | head -n 2)

sleep 10
sleep 30
echo $fullstatus

if [[ "$fullstatus" == *"success"* ]]; then
echo "All jobs succeeded"
echo "All jobs succeeded"
else
echo "Jobs failed or pending - Check Prow status"
exit 1
fi
echo "Jobs failed or pending - Check Prow status"
exit 1
fi

4 changes: 2 additions & 2 deletions sec-scanners-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module-name: eventing
rc-tag: 1.0.0
rc-tag: 0.0.0
protecode:
- europe-docker.pkg.dev/kyma-project/prod/eventing-manager:v20231114-4bbffe1a
- europe-docker.pkg.dev/kyma-project/prod/eventing-manager:v20231207-d7f386f5
- europe-docker.pkg.dev/kyma-project/prod/event-publisher-proxy:v20231025-3f5d1600
- europe-docker.pkg.dev/kyma-project/prod/eventing-webhook-certificates:1.7.0
whitesource:
Expand Down
Loading