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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:

jobs:
rust:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
env:
CARGO_BUILD_JOBS: 1
steps:
Expand All @@ -39,7 +39,7 @@ jobs:
- run: cargo build --profile release-github -p rtbit --no-default-features --features default-tls

webui:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
Expand All @@ -57,7 +57,7 @@ jobs:
run: npm run build

gui-e2e:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
needs: webui
steps:
- uses: actions/checkout@v7
Expand All @@ -74,7 +74,7 @@ jobs:
run: npm run test:e2e

website:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
- run: ci/tasks/website-check
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
publish:
# Privileged publication capacity is selected only for this repository and
# this workflow deliberately has no pull_request trigger.
runs-on: [self-hosted, node-b, linux, x64, publish, docker]
runs-on: [self-hosted, docker, publish]
env:
IMAGE: ghcr.io/thedancingdeveloper-org/rusttorrent
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ permissions:

jobs:
policy:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
release:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
env:
CARGO_BUILD_JOBS: 1
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
deploy:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
- name: Validate website
Expand Down
Loading