Skip to content

Commit

Permalink
Update Maturin, DIDKit, tests/project structure, and version (spruceid#9
Browse files Browse the repository at this point in the history
)

Also remove Linux architectures without ring support

Close spruceid#8
  • Loading branch information
sbihel committed Mar 9, 2023
1 parent 0a3dbb4 commit de7f946
Show file tree
Hide file tree
Showing 16 changed files with 5,066 additions and 90 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
name: CI

on: push
on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
CI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: "3.10"
Expand All @@ -15,10 +19,9 @@ jobs:
with:
manylinux: off
args: --find-interpreter
- uses: abatilo/actions-poetry@v2.1.6
- uses: abatilo/actions-poetry@v2.3.0
- name: Run Tests
working-directory: pydidkit_tests
run: |
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -
poetry install
poetry run maturin develop
poetry run pytest
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, i686, aarch64, armv7, s390x, ppc64le, ppc64]
target: [x86_64, i686, aarch64, armv7]
steps:
- uses: actions/checkout@v2
- name: Build Wheels
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/target
Cargo.lock
__pycache__/
*.so
Loading

0 comments on commit de7f946

Please sign in to comment.