feat: Add rebrand CI/CD workflows to main branch
- Add 72 rebrand workflow files (polkadot→pezkuwi, substrate→bizinikiwi, cumulus→pezcumulus) - Add GitHub actions, issue templates, and configs - Removed unnecessary workflows (fork-sync, gitspiegel, upstream-tracker, sync-templates, backport) - Renamed zombienet test files to match new naming convention
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
name: Zombienet Bizinikiwi
|
||||
|
||||
on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
build_run_id:
|
||||
type: string
|
||||
description: "Build run ID from the build workflow."
|
||||
required: true
|
||||
ref_slug:
|
||||
type: string
|
||||
description: "Source ref slug from the build workflow."
|
||||
required: false
|
||||
test_pattern:
|
||||
type: string
|
||||
description: "Run tests which names match this pattern (also flaky)"
|
||||
default: ""
|
||||
required: false
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
test_pattern:
|
||||
type: string
|
||||
description: "Run tests which names match this pattern (also flaky)"
|
||||
default: ""
|
||||
required: false
|
||||
|
||||
concurrency:
|
||||
group: bizinikiwi-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions: read-all
|
||||
|
||||
env:
|
||||
FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: 1
|
||||
GHA_CLUSTER_SERVER_ADDR: "https://kubernetes.default:443"
|
||||
# use spot by default
|
||||
X_INFRA_INSTANCE: "spot"
|
||||
# don't retry sdk tests
|
||||
NEXTEST_RETRIES: 0
|
||||
KUBECONFIG: "/data/config"
|
||||
ZOMBIE_CLEANER_DISABLED: 1
|
||||
|
||||
# DB generated from commit: https://github.com/pezkuwichain/pezkuwi-sdk/commit/868788a5bff3ef94869bd36432726703fe3b4e96
|
||||
# TODO: As a workaround for https://github.com/pezkuwichain/pezkuwi-sdk/issues/2568 the DB was generated in archive mode.
|
||||
# After the issue is fixed, we should replace it with a pruned version of the DB.
|
||||
DB_SNAPSHOT: "https://storage.googleapis.com/zombienet-db-snaps/bizinikiwi/0001-basic-warp-sync/chains-9677807d738b951e9f6c82e5fd15518eb0ae0419.tgz"
|
||||
DB_BLOCK_HEIGHT: 56687
|
||||
|
||||
jobs:
|
||||
isdraft:
|
||||
uses: ./.github/workflows/reusable-isdraft.yml
|
||||
preflight:
|
||||
needs: isdraft
|
||||
uses: ./.github/workflows/zombienet-reusable-preflight.yml
|
||||
with:
|
||||
tests_yaml: .github/zombienet-tests/zombienet_bizinikiwi_tests.yml
|
||||
test_pattern: ${{ inputs.test_pattern }}
|
||||
build_run_id: ${{ inputs.build_run_id }}
|
||||
ref_slug: ${{ inputs.ref_slug }}
|
||||
|
||||
zombienet-bizinikiwi-tests:
|
||||
name: ${{ matrix.test.job-name }}
|
||||
runs-on: ${{ matrix.test.runner-type == 'large' && (matrix.test.use-zombienet-sdk && needs.preflight.outputs.ZOMBIENET_SDK_LARGE_RUNNER || needs.preflight.outputs.ZOMBIENET_LARGE_RUNNER) || (matrix.test.use-zombienet-sdk && needs.preflight.outputs.ZOMBIENET_SDK_DEFAULT_RUNNER || needs.preflight.outputs.ZOMBIENET_DEFAULT_RUNNER) }}
|
||||
timeout-minutes: 70 # 60 for test + 10 for send logs
|
||||
needs: [preflight]
|
||||
if: ${{ github.event_name == 'workflow_call' || github.event_name == 'workflow_dispatch' || github.event_name == 'merge_group' || (needs.preflight.outputs.changes_bizinikiwi == 'true' || needs.preflight.outputs.changes_pezkuwi == 'true' || needs.preflight.outputs.changes_zombienet == 'true') }}
|
||||
container:
|
||||
image: ${{ matrix.test.use-zombienet-sdk && needs.preflight.outputs.ZOMBIENET_SDK_IMAGE || needs.preflight.outputs.ZOMBIENET_IMAGE }}
|
||||
options: -v /tmp/zombienet:/tmp/zombienet
|
||||
env:
|
||||
ZOMBIENET_INTEGRATION_TEST_IMAGE: "${{ needs.preflight.outputs.TEMP_IMAGES_BASE }}/pezkuwi-debug:${{ needs.preflight.outputs.DOCKER_IMAGES_VERSION }}"
|
||||
DEBUG: ${{ needs.preflight.outputs.DEBUG }}
|
||||
ZOMBIENET_PROVIDER: ${{ needs.preflight.outputs.ZOMBIENET_PROVIDER }}
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
test: ${{ fromJson(needs.preflight.outputs.TEST_MATRIX) }}
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
|
||||
- name: Additional setup
|
||||
if: ${{ matrix.test.additional-setup }}
|
||||
shell: bash
|
||||
run: ${{ matrix.test.additional-setup }}
|
||||
|
||||
- name: zombienet_test (v1)
|
||||
timeout-minutes: 60
|
||||
uses: ./.github/actions/zombienet
|
||||
with:
|
||||
test-definition: ${{ matrix.test.test-definition }}
|
||||
job-name: ${{ matrix.test.job-name }}
|
||||
local-dir: ${{ matrix.test.local-dir }}
|
||||
concurrency: ${{ matrix.test.concurrency || 1 }}
|
||||
gh-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
build-id: ${{ needs.preflight.outputs.BUILD_RUN_ID }}
|
||||
ref-slug: ${{ needs.preflight.outputs.SOURCE_REF_SLUG }}
|
||||
|
||||
- name: process_logs
|
||||
if: ${{ always() }}
|
||||
shell: bash
|
||||
run: |
|
||||
echo "Processing log files"
|
||||
echo "::group::Logs"
|
||||
# do not fail the whole run if this step fails
|
||||
if ! ./.github/scripts/process-logs-zombienet.sh ; then
|
||||
echo "::endgroup::"
|
||||
echo "::warning ::WARNING: Failed to process logs"
|
||||
else
|
||||
echo "::endgroup::"
|
||||
fi
|
||||
|
||||
|
||||
- name: upload_logs
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
name: zombienet-logs-${{ matrix.test.job-name }}-${{ github.sha }}
|
||||
path: |
|
||||
/tmp/zombie*/logs/*
|
||||
Reference in New Issue
Block a user