Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
lint:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
# The self-hosted runner image has no Rust toolchain preinstalled,
Expand All @@ -42,7 +42,7 @@ jobs:
- run: cargo clippy --workspace --all-features --locked -- -D warnings

test:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
# The self-hosted runner image has no Rust toolchain preinstalled,
Expand All @@ -64,7 +64,7 @@ jobs:
- run: cargo test --workspace --all-features --locked

build:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
# The self-hosted runner image has no Rust toolchain preinstalled,
Expand All @@ -86,7 +86,7 @@ jobs:
- run: cargo build --workspace --all-features --locked

ui:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
strategy:
matrix:
project: [ui, client]
Expand All @@ -103,7 +103,7 @@ jobs:
run: npm run build

ui-e2e:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v7
Expand All @@ -121,7 +121,7 @@ jobs:
container:
if: github.event_name == 'push'
needs: [lint, test, build, ui, ui-e2e]
runs-on: [self-hosted, node-b, linux, x64, publish, docker]
runs-on: [self-hosted, docker, publish]
permissions:
contents: read
packages: write
Expand Down
Loading