From 2eb1fe22070907882d3fd89028b69db2a52fd5b8 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Tue, 25 Jun 2024 23:10:00 -0400 Subject: [PATCH 1/2] always run e2e tests on all pull requests and on push for major branches --- .github/workflows/e2e-bittensor-tests.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/e2e-bittensor-tests.yml b/.github/workflows/e2e-bittensor-tests.yml index 773edb566..d21514909 100644 --- a/.github/workflows/e2e-bittensor-tests.yml +++ b/.github/workflows/e2e-bittensor-tests.yml @@ -5,16 +5,10 @@ concurrency: cancel-in-progress: true on: - ## Run automatically for all PRs against main, regardless of what the changes are - ## to be safe and so we can more easily force re-run the CI when github is being - ## weird by using a blank commit push: - branches: [main, development, staging] + branches: [main, devnet-ready, devnet, testnet, finney] - ## - # Run automatically for PRs against default/main branch if Rust files change pull_request: - branches: [main, development, staging] ## Allow running workflow manually from the Actions tab workflow_dispatch: From 1f753d8d266625fd4820446155d4dbf242062cb4 Mon Sep 17 00:00:00 2001 From: Sam Johnson Date: Thu, 4 Jul 2024 10:25:48 -0400 Subject: [PATCH 2/2] bump spec version --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 9a43fdf93..c091fb462 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -139,7 +139,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // `spec_version`, and `authoring_version` are the same between Wasm and native. // This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use // the compatible custom types. - spec_version: 154, + spec_version: 155, impl_version: 1, apis: RUNTIME_API_VERSIONS, transaction_version: 1,