-
Notifications
You must be signed in to change notification settings - Fork 51
163 lines (139 loc) · 4.3 KB
/
nucliadb_node_release.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
name: Release NucliaDB Node
on:
pull_request:
branches:
- main
paths:
- ".github/workflows/nucliadb_node_release.yml"
- "nucliadb_node_binding/**"
- "Cargo.lock"
- "Cargo.toml"
- "nucliadb_core/**"
- "nucliadb_node/src/**"
- "nucliadb_node/Cargo.toml"
- "nucliadb_paragraphs[0-9]*/**"
- "nucliadb_relations[0-9]*/**"
- "nucliadb_texts[0-9]*/**"
- "nucliadb_vectors/**"
push:
branches:
- main
paths:
- ".github/workflows/nucliadb_node_release.yml"
- "nucliadb_node_binding/**"
- "Cargo.lock"
- "Cargo.toml"
- "nucliadb_core/**"
- "nucliadb_node/Cargo.toml"
- "nucliadb_node/src/**"
- "nucliadb_paragraphs[0-9]*/**"
- "nucliadb_relations[0-9]*/**"
- "nucliadb_texts[0-9]*/**"
- "nucliadb_vectors/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build on ${{ matrix.platform || matrix.os }} (${{ matrix.target }} - ${{ matrix.manylinux || 'auto' }})
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos]
target: [x86_64, aarch64]
manylinux: [auto]
include:
- os: ubuntu
platform: linux
- os: macos
target: aarch64
# - os: ubuntu
# platform: linux
# target: i686
# GCC 4.8.5 in manylinux2014 container doesn't support c11 atomic
# we use manylinux_2_24 container for aarch64 and armv7 targets instead,
- os: ubuntu
platform: linux
target: aarch64
container: messense/manylinux_2_24-cross:aarch64
# musllinux
- os: ubuntu
platform: linux
target: x86_64
manylinux: musllinux_1_1
- os: ubuntu
platform: linux
target: aarch64
manylinux: musllinux_1_1
runs-on: ${{ matrix.os }}-latest
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.12"
architecture: ${{ matrix.python-architecture || 'x64' }}
- name: Setup env
run: |
python bump.py --build=${{github.run_number}}
- run: pip install -U twine 'black>=22.3.0,<23' typing_extensions
- name: Check system deps
run: make -C nucliadb check-system
- name: build sdist
if: ${{ matrix.os == 'ubuntu' && matrix.target == 'x86_64' && matrix.manylinux == 'auto' }}
uses: messense/maturin-action@v1
with:
command: sdist
args: -m nucliadb_node_binding/Cargo.toml --out dist
- name: build wheels
uses: messense/maturin-action@v1
env:
RUSTFLAGS: --cfg tokio_unstable
with:
before-script-linux: scripts/install-system-deps.sh
target: ${{ matrix.target }}
manylinux: ${{ matrix.manylinux || 'auto' }}
container: ${{ matrix.container }}
args: -m nucliadb_node_binding/Cargo.toml --release --out dist --profile release-wheel
- run: ${{ matrix.ls || 'ls -lh' }} dist/
- run: twine check dist/*
- uses: actions/upload-artifact@v3
if: github.event_name == 'push'
with:
name: pypi_files
path: dist
list-pypi-files:
needs: [build]
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: get dist artifacts
uses: actions/download-artifact@v3
with:
name: pypi_files
path: dist
- run: ls -lh dist/
- run: echo "`ls dist | wc -l` files"
release:
needs: [build]
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v4
- name: set up python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- run: pip install -U twine
- name: get dist artifacts
uses: actions/download-artifact@v3
with:
name: pypi_files
path: dist
- run: twine check dist/*
- name: upload to pypi
run: twine upload dist/*
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}