Skip to content

Commit

Permalink
Added test builds.
Browse files Browse the repository at this point in the history
Signed-off-by: Pavel Kirilin <win10@list.ru>
  • Loading branch information
s3rius committed Sep 18, 2023
1 parent 18fce1a commit f93e8a0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ttest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Testing builds

on:
push:

permissions:
contents: write

jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86, aarch64, armv7, ppc64le] # Also can be enabled: s390x (gnu)
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Instal OpenSSL
run: sudo apt-get update -y && sudo apt-get install -y libssl-dev openssl pkg-config gcc-multilib
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
manylinux: auto
container: "off"
args: --release --out dist
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

0 comments on commit f93e8a0

Please sign in to comment.