Skip to content

Commit

Permalink
build again
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Jun 14, 2024
1 parent 207afda commit 5a505ca
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
- runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
suffix: so
- runner: macos-latest
- runner: macos-12
target: x86_64-apple-darwin
suffix: dylib
- runner: macos-latest
- runner: macos-14
target: aarch64-apple-darwin
suffix: dylib
- runner: windows-latest
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Build
run: cargo build --release --target ${{ matrix.platform.target }}
- name: List files
run: ls -a ./target/${{ matrix.platform.target }}/release/
run: ls ./target/${{ matrix.platform.target }}/release/
- name: Upload release
uses: actions/upload-artifact@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
target: x86_64-unknown-linux-gnu
- runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
- runner: macos-latest
- runner: macos-12
target: x86_64-apple-darwin
- runner: macos-latest
- runner: macos-14
target: aarch64-apple-darwin
- runner: windows-latest
target: x86_64-pc-windows-gnu
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install dependencies
if: matrix.platform.runner == 'ubuntu-latest' && matrix.platform.target == 'aarch64-unknown-linux-gnu'
run: sudo apt-get install -y aarch64-linux-gnu-gcc
run: sudo apt-get install gcc-aarch64-linux-gnu
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion matcher_py/matcher_py/test.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.3"
"version": "3.1.undefined"
},
"orig_nbformat": 4,
"vscode": {
Expand Down
2 changes: 2 additions & 0 deletions matcher_py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ bindings = "pyo3"
strip = true
profile = "release"
module-name = "matcher_py"
rustc-args = ["-C", "target-cpu=native"]
all-features = true

0 comments on commit 5a505ca

Please sign in to comment.