Skip to content

Commit

Permalink
Merge pull request #353 from PyO3/abi3
Browse files Browse the repository at this point in the history
Add abi3 support
  • Loading branch information
konstin authored Oct 4, 2020
2 parents afd48fd + 16b9b40 commit 1271922
Show file tree
Hide file tree
Showing 19 changed files with 605 additions and 428 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test-docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Docker test

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
docker-test:
Expand Down
37 changes: 21 additions & 16 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
name: Run tests

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
Expand All @@ -31,21 +36,21 @@ jobs:
profile: minimal
toolchain: stable
override: true
- name: Cache cargo registry
uses: actions/cache@v2
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-registry-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-index-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-target-${{ hashFiles('**/Cargo.lock') }}
#- name: Cache cargo registry
# uses: actions/cache@v2
# with:
# path: ~/.cargo/registry
# key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-registry-${{ hashFiles('**/Cargo.lock') }}
#- name: Cache cargo index
# uses: actions/cache@v2
# with:
# path: ~/.cargo/git
# key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-index-${{ hashFiles('**/Cargo.lock') }}
#- name: Cache cargo build
# uses: actions/cache@v2
# with:
# path: target
# key: ${{ runner.os }}-${{ steps.rustup.outputs.rustc_hash }}-target-${{ hashFiles('**/Cargo.lock') }}
- name: cargo test
uses: actions-rs/cargo@v1
with:
Expand Down
Loading

0 comments on commit 1271922

Please sign in to comment.