File: build-binary.sh

package info (click to toggle)
python-evdev 1.9.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 416 kB
  • sloc: python: 1,388; ansic: 739; makefile: 142; sh: 14
file content (15 lines) | stat: -rwxr-xr-x 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

set -o allexport
set -o nounset

CIBW_MANYLINUX_X86_64_IMAGE="manylinux_2_28"
CIBW_MANYLINUX_I686_IMAGE="manylinux_2_28"
CIBW_CONTAINER_ENGINE="podman"
CIBW_SKIP="cp36-*"
CIBW_ARCHS_LINUX="auto64"
CIBW_BEFORE_ALL_LINUX=./scripts/cibw-before.sh
CIBW_TEST_COMMAND="python -c 'import evdev; print(evdev)'"
CIBW_ENVIRONMENT="PACKAGE_NAME=evdev-binary"

exec cibuildwheel