Search also for llvm-config-7 #147
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: run-rz-bindgen | |
on: | |
push: | |
workflow_dispatch: | |
workflow_call: | |
inputs: | |
rizin_ref: | |
required: false | |
type: string | |
default: 'dev' | |
jobs: | |
run-bindgen: | |
name: Run bindgen | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-2019, macos-latest] | |
steps: | |
- name: Checkout rz-bindgen | |
uses: actions/checkout@v3 | |
- name: Checkout rizin | |
uses: actions/checkout@v3 | |
with: | |
repository: rizinorg/rizin | |
path: rizin | |
ref: ${{ inputs.rizin_ref }} | |
- name: Run rz-bindgen | |
uses: pypa/[email protected] | |
- name: Upload sdist | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sdist | |
path: dist/*.tar.gz | |
- name: Upload wheels | |
uses: actions/upload-artifact@v3 | |
with: | |
name: wheels | |
path: wheelhouse/*.whl |