forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_actions_aws_windows_python64.yml
More file actions
48 lines (45 loc) · 1.03 KB
/
github_actions_aws_windows_python64.yml
File metadata and controls
48 lines (45 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: nimibot_win_64
on:
pull_request:
branches:
- master
- releases/*
paths-ignore:
- CHANGELOG.md
- CONTRIBUTING.md
- .gitattributes
- LICENSE
- VERSION
types: [ opened, synchronize, reopened ]
# Allows you to run this workflow manually from the Actions tab.
workflow_dispatch:
jobs:
do-the-job1:
name: system_test
runs-on:
- 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",
]
steps:
- name: checkout repository
uses: actions/checkout@v2
- name: execute system tests
uses: ./.github/actions/windows
with:
module_name: ${{ matrix.module_name }}