Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/resources/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

self-hosted-runner:
# Labels of self-hosted runner in array of strings.
labels: [xeon, nuc]
labels: [all, bat]

# Configuration variables in array of strings defined in your repository or
# organization. `null` means disabling configuration variables check.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
description: "Timeout for the job in minutes"
required: false
type: number
default: 90
default: 120
push:
branches:
- main
Expand All @@ -45,7 +45,7 @@ permissions:
jobs:
run-all-tests:
name: "Run All Tests"
runs-on: [self-hosted]
runs-on: [all]
timeout-minutes: ${{ fromJSON(inputs.timeout || '90') }}
steps:
- name: "Remove all Docker images"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests-bat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:

run-basic-acceptance-tests:
name: "Run Basic Acceptance Tests"
runs-on: [self-hosted]
runs-on: [bat]
timeout-minutes: ${{ fromJSON(inputs.timeout || '60') }}
needs: [filter, check-pr-state]
if: ${{ needs.filter.outputs.code_changed == 'true' && (needs.check-pr-state.outputs.pr_state != 'true' || github.event_name == 'workflow_dispatch') }}
Expand Down
Loading