Skip to content
Merged
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
7 changes: 1 addition & 6 deletions .github/actions/zombienet-sdk/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ inputs:
runs:
using: "composite"
steps:
- name: k8s_auth
shell: bash
run: |
. /home/nonroot/zombie-net/scripts/ci/run-test-local-env-manager.sh
k8s_auth

- name: common_vars
shell: bash
env:
Expand Down Expand Up @@ -61,6 +55,7 @@ runs:
TEST_NAME: ${{ inputs.test }}
PREFIX: ${{ inputs.prefix }}
run: |
export ZOMBIE_K8S_CI_NAMESPACE=$(cat /data/namespace)
ls -ltr ./artifacts
cargo nextest run --archive-file ./artifacts/${PREFIX}-zombienet-tests.tar.zst --no-capture -- ${TEST_NAME}

Expand Down
7 changes: 1 addition & 6 deletions .github/actions/zombienet/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@ inputs:
runs:
using: "composite"
steps:
- name: k8s_auth
shell: bash
run: |
. /home/nonroot/zombie-net/scripts/ci/run-test-local-env-manager.sh
k8s_auth

- name: common_vars
shell: bash
env:
Expand All @@ -42,6 +36,7 @@ runs:
LOCAL_PATH: ${{ inputs.local-dir }}
CONCURRENCY: ${{ inputs.concurrency }}
run: |
export ZOMBIE_K8S_CI_NAMESPACE=$(cat /data/namespace)
/home/nonroot/zombie-net/scripts/ci/run-test-local-env-manager.sh \
--local-dir="$(pwd)/$LOCAL_PATH" \
--concurrency=$CONCURRENCY \
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/zombienet_cumulus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ env:
FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: 1
LOCAL_DIR: "./cumulus/zombienet/tests"
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


# only run if we have changes in [subtrate, cumulus, polkadot] directories or this workflow.
jobs:
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/zombienet_substrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ env:
FF_DISABLE_UMASK_FOR_DOCKER_EXECUTOR: 1
LOCAL_DIR: "./substrate/zombienet"
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/paritytech/polkadot-sdk/commit/868788a5bff3ef94869bd36432726703fe3b4e96
# TODO: As a workaround for https://github.com/paritytech/polkadot-sdk/issues/2568 the DB was generated in archive mode.
Expand Down
4 changes: 2 additions & 2 deletions .github/zombienet-env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ZOMBIENET_IMAGE=docker.io/paritytech/zombienet:v1.3.126
ZOMBIENET_RUNNER=zombienet-arc-runner
ZOMBIENET_IMAGE=docker.io/paritytech/zombienet:v1.3.132
ZOMBIENET_RUNNER=parity-zombienet
PUSHGATEWAY_URL=http://prometheus-pushgateway.monitoring.svc.cluster.local:9091/metrics/job/zombie-metrics
DEBUG=zombie,zombie::network-node,zombie::kube::client::logs
ZOMBIE_PROVIDER=k8s
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -1464,8 +1464,8 @@ xcm-runtime-apis = { path = "polkadot/xcm/xcm-runtime-apis", default-features =
xcm-simulator = { path = "polkadot/xcm/xcm-simulator", default-features = false }
yet-another-parachain-runtime = { path = "cumulus/parachains/runtimes/testing/yet-another-parachain" }
zeroize = { version = "1.7.0", default-features = false }
zombienet-orchestrator = { version = "0.3.0" }
zombienet-sdk = { version = "0.3.0" }
zombienet-orchestrator = { version = "0.3.6" }
zombienet-sdk = { version = "0.3.6" }
zstd = { version = "0.12.4", default-features = false }

[profile.release]
Expand Down
Loading