-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing Pipeline | Added self hosted GH runner nidaqmxbot in pipeline (…
…#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
1 parent
a6d819c
commit 6462274
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |