Skip to content

Commit

Permalink
[CI] fix runners
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Jun 7, 2024
1 parent f13402a commit 0b2772c
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
compile-and-check:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
checks-and-tests:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- name: Free disk space
run: |
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:

native-linux:
needs: checks-and-tests
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
strategy:
matrix:
target:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
jobs:
fmt:
if: github.event.pull_request.draft == false
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
tests:
runs-on: [self-hosted, Linux, X64]
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ scale-info = { version = "2.5.0", default-features = false, features = [
"derive",
] }
smallvec = { version = "1.11", default-features = false }
lazy_static = { version = "1.4", default-features = false, features = ["spin_no_std"] }
lazy_static = { version = "1.4", default-features = false, features = [
"spin_no_std",
] }
log = { version = "0.4.19", default-features = false }

# (native)
Expand Down
6 changes: 3 additions & 3 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ substrate-build-script-utils = { workspace = true }

[features]
runtime-benchmarks = [
"sc-service/runtime-benchmarks",
"dev-runtime/runtime-benchmarks",
"main-runtime/runtime-benchmarks",
"sc-service/runtime-benchmarks",
"dev-runtime/runtime-benchmarks",
"main-runtime/runtime-benchmarks",
]
38 changes: 18 additions & 20 deletions vendor/pallet-xcm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,28 +33,26 @@ xcm-builder = { workspace = true }
[features]
default = ["std"]
# Enable `VersionedRuntimeUpgrade` for the migrations that is currently still experimental.
experimental = [
"frame-support/experimental"
]
experimental = ["frame-support/experimental"]
std = [
"bounded-collections/std",
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-std/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
"xcm-executor/std",
"bounded-collections/std",
"parity-scale-codec/std",
"scale-info/std",
"serde",
"sp-std/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"frame-benchmarking?/std",
"frame-support/std",
"frame-system/std",
"xcm/std",
"xcm-executor/std",
]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
"frame-benchmarking/runtime-benchmarks",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"xcm-builder/runtime-benchmarks",
]
try-runtime = ["frame-support/try-runtime"]

0 comments on commit 0b2772c

Please sign in to comment.