Skip to content

Commit

Permalink
Testing Pipeline | Added self hosted GH runner nidaqmxbot in pipeline (
Browse files Browse the repository at this point in the history
…#415)

* Feat: Added self hosted GH runner in pipeline to run system tests
---------

Signed-off-by: Brad Keryan <[email protected]>
Co-authored-by: Brad Keryan <[email protected]>
  • Loading branch information
MounikaBattu17 and bkeryan authored Jun 28, 2023
1 parent a6d819c commit 6462274
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,7 @@ jobs:
name: Generate docs
uses: ./.github/workflows/generate_docs.yml
needs: [build]
run_system_tests:
name: Run system tests
uses: ./.github/workflows/run_system_tests.yml
needs: [build, run_unit_tests]
24 changes: 24 additions & 0 deletions .github/workflows/run_system_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run system tests

on:
workflow_call:
workflow_dispatch:
jobs:
run_system_tests:
name: Run system tests
runs-on:
- self-hosted
- windows
- x64
- rdss-nidaqmxbot-${{ matrix.configuration }}
strategy:
matrix:
configuration: ["win-10-py32", "win-10-py64"]
timeout-minutes: 90
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Install dependencies
run: poetry install
- name: Run system tests
run: poetry run tox

0 comments on commit 6462274

Please sign in to comment.