-
Notifications
You must be signed in to change notification settings - Fork 14
77 lines (68 loc) · 2.24 KB
/
create-linux-wheels.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
name: create-Linux-wheels
run-name: ${{ github.actor }} create_wheels_for_linux
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
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
jobs:
create-wheels-for-manylinux:
runs-on: ubuntu-22.04
if: github.repository == 'PelionIoT/manifest-tool'
steps:
- uses: actions/checkout@v4
- name: Build wheels
run: ./build_manylinux_wheels.sh
- name: Upload manylinux wheels
uses: actions/upload-artifact@v4
with:
name: wheels-manylinux
path: dist/*.*
if-no-files-found: error
create-tar-gz:
runs-on: ubuntu-22.04
if: github.repository == 'PelionIoT/manifest-tool'
steps:
- uses: actions/checkout@v4
- run: pip install -r requirements.txt
- run: pip install build
- run: python -m build
- name: Upload .tar.gz -file
uses: actions/upload-artifact@v4
with:
name: wheels-tar-gz
path: dist/*.tar.gz
if-no-files-found: error
# From internal - do not upload, just build to make sure
# all is OK.
create-wheels-for-manylinux-internal:
runs-on: ubuntu-22.04
if: github.repository == 'PelionIoT/manifest-tool-internal'
steps:
- uses: actions/checkout@v4
- name: Build wheels
run: ./build_manylinux_wheels.sh
- name: Integration with slack
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
channel: '#testing_build'
if: failure()
create-tar-gz-int:
runs-on: ubuntu-22.04
if: github.repository == 'PelionIoT/manifest-tool-internal'
steps:
- uses: actions/checkout@v4
- run: pip install -r requirements.txt
- run: pip install build
- run: python -m build
- name: Integration with slack
uses: act10ns/slack@v2
with:
status: ${{ job.status }}
channel: '#testing_device'
if: always()