-
Notifications
You must be signed in to change notification settings - Fork 14
78 lines (75 loc) · 2.23 KB
/
pr-checker.yml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: PR-checker
on:
push:
workflow_dispatch:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
# Job for public repo, upload artifacts
# Run on larger number of OSes
run_tox_pub:
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04, ubuntu-20.04, windows-2022, windows-2019, macos-latest]
runs-on: ${{ matrix.os }}
if: github.repository == 'PelionIoT/manifest-tool'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python -m pip install wheel --user
- run: python -m pip install --user tox
- run: python -m tox
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/*.whl
# Job for internal repo, do not upload artifacts
# Run with smaller set of OSes
run_tox_internal:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os: [ubuntu-22.04, windows-2022]
runs-on: ${{ matrix.os }}
if: github.repository == 'PelionIoT/manifest-tool-internal'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: python -m pip install wheel --user
- run: python -m pip install --user tox
- run: python -m tox
- name: Integration with slack
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
channel: '#testing_device'
if: always()