22 lines
473 B
YAML
22 lines
473 B
YAML
name: Test All Workers
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
HP-DL360G6-1:
|
|
name: "HP-DL360G6-1 build"
|
|
runs-on: [HP-DL360G6-1]
|
|
timeout-minutes: 10
|
|
|
|
steps:
|
|
- name: Set up repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
# Number of commits to fetch. `0` indicates all history for all
|
|
# branches and tags. (default: 1)
|
|
fetch-depth: 0
|
|
|
|
- name: Check the system
|
|
run: |
|
|
./tools/check-build-system
|