Skip to content

Commit

Permalink
GitHub actions: add runners info
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Abramov <uncle.decart@gmail.com>
  • Loading branch information
uncleDecart committed Oct 23, 2024
1 parent 50ac754 commit 0c13836
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ on: # yamllint disable-line rule:truthy
type: string

jobs:

Check failure on line 31 in .github/workflows/test.yml

View workflow job for this annotation

GitHub Actions / yetus

blanks:end of line
smoke:
continue-on-error: true
strategy:
Expand All @@ -38,6 +39,11 @@ jobs:
name: Smoke tests
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -63,6 +69,11 @@ jobs:
name: Networking test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -89,6 +100,11 @@ jobs:
name: Storage test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -111,6 +127,11 @@ jobs:
name: LPS LOC test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -137,6 +158,11 @@ jobs:
name: EVE upgrade test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -159,6 +185,11 @@ jobs:
name: User apps test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand All @@ -181,6 +212,11 @@ jobs:
name: Virtualization test suite
runs-on: ubuntu-22.04
steps:
- name: Print info
run: |
nproc
cat /proc/cpuinfo
shell: bash
- name: Get code
uses: actions/checkout@v4.1.1
with:
Expand Down

0 comments on commit 0c13836

Please sign in to comment.