mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 01:11:04 +00:00
CI: test and update ci image, codeowners (#8142)
* CI: prep for the new ff deployment * CI: variable for CI image * git: add CI team and remove Max from CODEOWNERS * CI: diener should be updated in CI image, not here. * CI: diener should be updated in CI image, not here. * CI: run cargo deny on changes to manifests and lock; run build jobs on schedules [skip ci] * CI: remove flaming-fir deployment, it will be handled from s3 updates [skip ci] * CI: trigger simnet with a certain substrate version * CI: remove cargo-audit in favor of cargo-deny; prepare for being triggered * CI: prepare to be triggered * CI: chore
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
RETRY_COUNT=10
|
||||
RETRY_ATTEMPT=0
|
||||
SLEEP_TIME=15
|
||||
TARGET_HOST="$1"
|
||||
COMMIT=$(cat artifacts/substrate/VERSION)
|
||||
DOWNLOAD_URL="https://releases.parity.io/substrate/x86_64-debian:stretch/${COMMIT}/substrate/substrate"
|
||||
POST_DATA='{"extra_vars":{"artifact_path":"'${DOWNLOAD_URL}'","target_host":"'${TARGET_HOST}'"}}'
|
||||
|
||||
JOB_ID=$(wget -O - --header "Authorization: Bearer ${AWX_TOKEN}" --header "Content-type: application/json" --post-data "${POST_DATA}" https://ansible-awx.parity.io/api/v2/job_templates/32/launch/ | jq .job)
|
||||
|
||||
echo "Launched job: $JOB_ID"
|
||||
|
||||
|
||||
while [ ${RETRY_ATTEMPT} -le ${RETRY_COUNT} ] ; do
|
||||
export RETRY_RESULT=$(wget -O - --header "Authorization: Bearer ${AWX_TOKEN}" https://ansible-awx.parity.io/api/v2/jobs/${JOB_ID}/ | jq .status)
|
||||
RETRY_ATTEMPT=$(( $RETRY_ATTEMPT +1 ))
|
||||
sleep $SLEEP_TIME
|
||||
if [ $(echo $RETRY_RESULT | egrep -e successful -e failed) ] ; then
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
AWX_OUTPUT=$(wget -O - --header "Authorization: Bearer ${AWX_TOKEN}" https://ansible-awx.parity.io/api/v2/jobs/${JOB_ID}/stdout?format=txt_download)
|
||||
|
||||
echo "AWX job log:"
|
||||
echo "${AWX_OUTPUT}"
|
||||
|
||||
|
||||
JOB_STATUS=$(wget -O - --header "Authorization: Bearer ${AWX_TOKEN}" https://ansible-awx.parity.io/api/v2/jobs/${JOB_ID}/ | jq .status )
|
||||
|
||||
echo "==================================="
|
||||
echo -e "Ansible AWX Remote Job: ${JOB_ID} \x1B[31mStatus: ${JOB_STATUS}\x1B[0m"
|
||||
echo "==================================="
|
||||
@@ -51,8 +51,6 @@ git merge origin/master
|
||||
# ancestor for successfully performing merges below.
|
||||
git clone --depth 20 https://github.com/paritytech/polkadot.git
|
||||
|
||||
cargo install -f diener
|
||||
|
||||
cd polkadot
|
||||
|
||||
# either it's a pull request then check for a companion otherwise use
|
||||
|
||||
Reference in New Issue
Block a user