forked from ni/nimi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_actions_aws_rhel_python64.yml
More file actions
42 lines (40 loc) · 1.05 KB
/
github_actions_aws_rhel_python64.yml
File metadata and controls
42 lines (40 loc) · 1.05 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
name: nimibot_rhel_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
- linux
- x64
- rdss-nimibot-rhel-83-py64
timeout-minutes: 40
strategy:
matrix:
module_name: ["nidcpower", "nidmm", "nifgen", "niscope", "niswitch", "nitclk"]
steps:
- name: checkout repository
uses: actions/checkout@v3
- name: execute system tests
uses: ./.github/actions/linux
with:
module_name: ${{ matrix.module_name }}
- name: upload coverage
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.module_name }}systemtests
name: ${{ matrix.module_name }}
files: ./generated/${{ matrix.module_name }}/coverage.xml