mirror of
https://github.com/containers/podman.git
synced 2025-06-24 19:42:56 +08:00
Merge pull request #17383 from cevich/revert_emergency_fix
[CI:BUILD] Cirrus: Fix GraphQL ownerRepository:null error
This commit is contained in:
@ -19,7 +19,7 @@ confirm_gha_environment
|
|||||||
mkdir -p ./artifacts
|
mkdir -p ./artifacts
|
||||||
cat > ./artifacts/query_raw.json << "EOF"
|
cat > ./artifacts/query_raw.json << "EOF"
|
||||||
query {
|
query {
|
||||||
ownerRepository(platform: "LINUX", owner: "@@OWNER@@", name: "@@REPO@@") {
|
ownerRepository(platform: "github", owner: "@@OWNER@@", name: "@@REPO@@") {
|
||||||
cronSettings {
|
cronSettings {
|
||||||
name
|
name
|
||||||
lastInvocationBuild {
|
lastInvocationBuild {
|
||||||
|
@ -45,9 +45,15 @@ if [[ "${DISTRO_NV}" =~ fedora ]]; then
|
|||||||
# Tests for lib.sh
|
# Tests for lib.sh
|
||||||
showrun ${SCRIPT_BASE}/lib.sh.t
|
showrun ${SCRIPT_BASE}/lib.sh.t
|
||||||
|
|
||||||
|
# Run this during daily cron job to prevent a GraphQL API change/breakage
|
||||||
|
# from impacting every PR. Down-side being if it does fail, a maintainer
|
||||||
|
# will need to do some archaeology to find it.
|
||||||
|
# Defined by CI system
|
||||||
|
# shellcheck disable=SC2154
|
||||||
|
if [[ "$CIRRUS_CRON" == "main" ]]; then
|
||||||
export PREBUILD=1
|
export PREBUILD=1
|
||||||
# TODO: Disabled due to test failure breaking all PRs
|
showrun bash ${CIRRUS_WORKING_DIR}/.github/actions/check_cirrus_cron/test.sh
|
||||||
# showrun bash ${CIRRUS_WORKING_DIR}/.github/actions/check_cirrus_cron/test.sh
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
msg "Checking 3rd party network service connectivity"
|
msg "Checking 3rd party network service connectivity"
|
||||||
|
Reference in New Issue
Block a user