Skip to content

Commit

Permalink
Run nimodinst system tests on Linux (#2020)
Browse files Browse the repository at this point in the history
* make workflow yml array style consistent

* remove unnessary quotes for style consistency within workflow ymls

* test nimodinst on linux
  • Loading branch information
ni-jfitzger authored Sep 27, 2023
1 parent e7fd73c commit 16fb72b
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 38 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/github_actions_aws_rhel_python64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ on:
- .gitattributes
- LICENSE
- VERSION
types: [ opened, synchronize, reopened ]
types:
- opened
- synchronize
- reopened

# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
Expand All @@ -20,14 +23,21 @@ jobs:
name: system_test
if: github.repository == 'ni/nimi-python'
runs-on:
- self-hosted
- linux
- x64
- rdss-nimibot-rhel-83-py64
- self-hosted
- linux
- x64
- rdss-nimibot-rhel-83-py64
timeout-minutes: 40
strategy:
matrix:
module_name: ["nidcpower", "nidmm", "nifgen", "niscope", "niswitch", "nitclk"]
module_name:
- nidcpower
- nidmm
- nifgen
- nimodinst
- niscope
- niswitch
- nitclk
steps:
- name: checkout repository
uses: actions/checkout@v3
Expand Down
33 changes: 17 additions & 16 deletions .github/workflows/github_actions_aws_windows_python32.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ on:
- .gitattributes
- LICENSE
- VERSION
types: [ opened, synchronize, reopened ]
types:
- opened
- synchronize
- reopened

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -21,25 +24,23 @@ jobs:
name: system_test
if: github.repository == 'ni/nimi-python'
runs-on:
- self-hosted
- windows
- x64
- rdss-nimibot-win-10-py32
- self-hosted
- windows
- x64
- rdss-nimibot-win-10-py32
timeout-minutes: 80
strategy:
matrix:
module_name:
[
"nidigital",
"nitclk",
"nifgen",
"nidcpower",
"nidmm",
"niscope",
"nimodinst",
"nise",
"niswitch",
]
- nidigital
- nitclk
- nifgen
- nidcpower
- nidmm
- niscope
- nimodinst
- nise
- niswitch
steps:
- name: checkout repository
uses: actions/checkout@v3
Expand Down
33 changes: 17 additions & 16 deletions .github/workflows/github_actions_aws_windows_python64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ on:
- .gitattributes
- LICENSE
- VERSION
types: [ opened, synchronize, reopened ]
types:
- opened
- synchronize
- reopened

# For this action, also trigger on a merge to master, because
# the coverage badge tracks coverage of master, not PRs.
Expand All @@ -35,25 +38,23 @@ jobs:
name: system_test
if: github.repository == 'ni/nimi-python'
runs-on:
- self-hosted
- windows
- x64
- rdss-nimibot-win-10-py64
- self-hosted
- windows
- x64
- rdss-nimibot-win-10-py64
timeout-minutes: 80
strategy:
matrix:
module_name:
[
"nidigital",
"nitclk",
"nifgen",
"nidcpower",
"nidmm",
"niscope",
"nimodinst",
"nise",
"niswitch",
]
- nidigital
- nitclk
- nifgen
- nidcpower
- nidmm
- niscope
- nimodinst
- nise
- niswitch
steps:
- name: checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 16fb72b

Please sign in to comment.