Skip to content

Commit

Permalink
DO NOT MERGE: Testing maturin
Browse files Browse the repository at this point in the history
  • Loading branch information
ia0 committed Oct 10, 2024
1 parent 42281c5 commit f8d2712
Show file tree
Hide file tree
Showing 14 changed files with 91 additions and 632 deletions.
87 changes: 0 additions & 87 deletions .github/workflows/codeql.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/workflows/github-issue-labeler.yml

This file was deleted.

53 changes: 0 additions & 53 deletions .github/workflows/github-pages.yml

This file was deleted.

40 changes: 0 additions & 40 deletions .github/workflows/js-docs-builder.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/js-publish.yml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/workflows/js-test.yml

This file was deleted.

89 changes: 89 additions & 0 deletions .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
# This file is autogenerated by maturin v1.7.4
# To update, run
#
# maturin generate-ci github
#
name: CI

on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
linux:
runs-on: ${{ matrix.platform.runner }}
strategy:
fail-fast: false
matrix:
platform:
- runner: ubuntu-latest
target: x86_64
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out ../dist
manylinux: 2_28
working-directory: python
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-linux-${{ matrix.platform.target }}
path: dist

# windows:
# runs-on: ${{ matrix.platform.runner }}
# strategy:
# matrix:
# platform:
# - runner: windows-latest
# target: x64
# steps:
# - uses: actions/checkout@v4
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out ../dist
# sccache: 'true'
# working-directory: python
# - name: Upload wheels
# uses: actions/upload-artifact@v4
# with:
# name: wheels-windows-${{ matrix.platform.target }}
# path: dist

# macos:
# runs-on: ${{ matrix.platform.runner }}
# strategy:
# matrix:
# platform:
# - runner: macos-12
# target: x86_64
# - runner: macos-14
# target: aarch64
# steps:
# - uses: actions/checkout@v4
# - name: Build wheels
# uses: PyO3/maturin-action@v1
# with:
# target: ${{ matrix.platform.target }}
# args: --release --out ../dist
# sccache: 'true'
# working-directory: python
# - name: Upload wheels
# uses: actions/upload-artifact@v4
# with:
# name: wheels-macos-${{ matrix.platform.target }}
# path: dist
Loading

0 comments on commit f8d2712

Please sign in to comment.