-
-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathaction.yml
More file actions
28 lines (28 loc) · 787 Bytes
/
Copy pathaction.yml
File metadata and controls
28 lines (28 loc) · 787 Bytes
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
name: 'manylinux_2_28_aarch64'
description: 'Builds manylinux_2_28_aarch64 package'
inputs:
script:
description: 'Specifies the path to the build script'
required: true
platform:
description: 'Specifies the --plat-name option to the build command'
required: true
makefile:
description: 'Specifies the path to the .mk file'
required: true
python:
description: 'Specifies the path to the python interpreter'
default: /usr/bin/python3
wheeldir:
description: 'Specifies directory to store delocated wheels'
required: true
default: wheelhouse
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.script }}
- ${{ inputs.platform }}
- ${{ inputs.makefile }}
- ${{ inputs.python }}
- ${{ inputs.wheeldir }}