Skip to content

Commit

Permalink
CI: Markup tests complexity (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
strokovok authored Oct 21, 2021
1 parent 45c8edd commit 581ecb2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: Builds
jobs:
release:
name: Release
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand All @@ -29,7 +29,7 @@ jobs:
uses: EndBug/latest-tag@latest
debug:
name: Debug
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ name: Lints
jobs:
fmt:
name: rustfmt
runs-on: self-hosted
runs-on: [self-hosted, light]
steps:
- name: Clone the repository
uses: actions/checkout@v2
- name: Run cargo fmt
run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand All @@ -31,7 +31,7 @@ jobs:

contracts:
name: eth-contracts
runs-on: self-hosted
runs-on: [self-hosted, light]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled_lints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Scheduled_Lints
jobs:
clippy:
name: Nightly_Clippy
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Tests
jobs:
test:
name: Test suite (mainnet, testnet, betanet)
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
bully-build:
name: Bully build
runs-on: self-hosted
runs-on: [self-hosted, heavy]
steps:
- name: Clone the repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 581ecb2

Please sign in to comment.