Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Next version #12

Draft
wants to merge 10 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ jobs:
uses: actions/checkout@v2

- name: Generate code coverage
run: cargo +nightly tarpaulin --verbose --engine llvm --no-dead-code --all-features --workspace --timeout 120 --out xml
run: cargo +nightly tarpaulin --all-features --workspace --engine llvm --timeout 120 --out xml

- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
# token: ${{secrets.CODECOV_TOKEN}} # not required for public repos
token: ${{secrets.CODECOV_TOKEN}} # not required for public repos
fail_ci_if_error: true

lints:
Expand Down
32 changes: 15 additions & 17 deletions .github/workflows/pypublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:
- main
tags:
- '*'
pull_request:
workflow_dispatch:

permissions:
contents: read
Expand All @@ -24,8 +22,8 @@ jobs:
matrix:
target: [x86_64, x86, aarch64, armv7, s390x, ppc64le]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build wheels
Expand All @@ -34,22 +32,22 @@ jobs:
target: ${{ matrix.target }}
args: --sdist --release --out dist --find-interpreter
sccache: 'true'
working-directory: vcf2parquet-py
working-directory: python
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: vcf2parquet-py/dist
path: python/dist

windows:
runs-on: windows-latest
strategy:
matrix:
target: [x64, x86]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: ${{ matrix.target }}
Expand All @@ -59,21 +57,21 @@ jobs:
target: ${{ matrix.target }}
args: --sdist --release --out dist --find-interpreter
sccache: 'true'
working-directory: vcf2parquet-py
working-directory: python
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: vcf2parquet-py/dist
path: python/dist

macos:
runs-on: macos-latest
strategy:
matrix:
target: [x86_64, aarch64]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build wheels
Expand All @@ -82,12 +80,12 @@ jobs:
target: ${{ matrix.target }}
args: --sdist --release --out dist --find-interpreter
sccache: 'true'
working-directory: vcf2parquet-py
working-directory: python
- name: Upload wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: vcf2parquet-py/dist
path: python/dist

release:
name: Release
Expand Down
Loading
Loading