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
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ env:

jobs:
test-build-push:
runs-on: [self-hosted, node-b, linux, x64, docker, publish]
runs-on: [self-hosted, publish]
steps:
- uses: actions/checkout@v5

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:

deploy:
needs: test-build-push
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- name: Bump the ops compose tag and trigger Komodo
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# request forever, which is worse than running it. So the jobs always run and
# always report; what changes is whether they do the expensive part.
changes:
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
outputs:
code: ${{ steps.filter.outputs.code }}
steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

lint:
needs: changes
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v5
if: needs.changes.outputs.code == 'true'
Expand All @@ -68,7 +68,7 @@ jobs:

test:
needs: changes
runs-on: [self-hosted, node-b, linux, x64]
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v5
if: needs.changes.outputs.code == 'true'
Expand Down
Loading