forked from pytroll/aggdraw
-
Notifications
You must be signed in to change notification settings - Fork 0
106 lines (95 loc) · 2.92 KB
/
ci.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
name: CI
#on: [push, pull_request]
on: [workflow_dispatch, push]
jobs:
#test:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# #os: [ubuntu-latest, macos-latest, windows-latest]
# #python-version: ["3.9", "3.10", "3.11", "3.12"]
# os: [macos-14]
# #python-version: ["3.9", "3.10", "3.11", "3.12"]
# python-version: ["3.11"]
# steps:
# - uses: actions/checkout@v4
# - name: Setup Conda Environment
# uses: conda-incubator/setup-miniconda@v2
# with:
# miniforge-variant: Mambaforge
# miniforge-version: latest
# use-mamba: true
# python-version: ${{ matrix.python-version }}
# environment-file: ci/environment.yaml
# activate-environment: test-environment
# - name: Run tests
# shell: bash -l {0}
# run: |
# pip install -e .
# python selftest.py
build:
name: "Build wheels on ${{ matrix.os }} ${{ matrix.cibw_archs }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
#- os: windows-2019
# cibw_archs: "AMD64 ARM64"
- os: macos-11
cibw_archs: "x86_64"
- os: macos-11
cibw_archs: "arm64"
#- os: "ubuntu-20.04"
# cibw_archs: "aarch64"
#- os: "ubuntu-20.04"
# cibw_archs: "x86_64"
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_TEST_COMMAND: python {project}/selftest.py
CIBW_BEFORE_BUILD_LINUX: yum install -y freetype-devel
CIBW_SKIP: "cp36-* cp37-* cp38-* pp* *-win32 *-manylinux_i686 *-musllinux*"
CIBW_TEST_REQUIRES: numpy pillow pytest
CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"
CIBW_ARCHS: "${{ matrix.cibw_archs }}"
# disable finding unintended freetype installations
CIBW_ENVIRONMENT_WINDOWS: "AGGDRAW_FREETYPE_ROOT=''"
- name: upload
uses: actions/upload-artifact@v3
with:
name: wheelhouse
path: "./wheelhouse/*.whl"
# publish:
# runs-on: ubuntu-latest
# needs:
# - build
# steps:
# - uses: actions/checkout@v4
#
# - uses: actions/setup-python@v4
#
# - name: sdist
# run: |
# python -m pip install -U build pip
# python -m build -s
#
# - name: download
# uses: actions/download-artifact@v3
# with:
# name: wheelhouse
# path: dist
#
# - name: Publish package to PyPI
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
# uses: pypa/[email protected]
# with:
# user: __token__
# password: ${{ secrets.pypi_password }}