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

ci: use dev or stable rz-bindgen branches #4783

Merged
merged 1 commit into from
Dec 19, 2024
Merged
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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -862,11 +862,12 @@ jobs:
export PATH=$PATH:/usr/local/bin
meson setup --prefix=/usr --buildtype=release build && ninja -C build && sudo ninja -C build install
working-directory: rizin
- name: Checkout rz-bindgen
uses: actions/checkout@v4
with:
repository: rizinorg/rz-bindgen
path: rz-bindgen
- name: Checkout rz-bindgen (stable)
if: github.ref == 'refs/heads/stable'
run: git clone -b stable https://github.com/rizinorg/rz-bindgen
- name: Checkout rz-bindgen (dev)
if: github.ref != 'refs/heads/stable'
run: git clone -b dev https://github.com/rizinorg/rz-bindgen
- name: Build rz-bindgen
run: |
meson setup --prefix=/usr -Dplugin=enabled build
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,12 @@ jobs:
uses: actions/checkout@v4
with:
path: rizin
- name: Checkout rz-bindgen
uses: actions/checkout@v4
with:
repository: rizinorg/rz-bindgen
path: rz-bindgen
- name: Checkout rz-bindgen (stable)
if: github.ref == 'refs/heads/stable'
run: git clone -b stable https://github.com/rizinorg/rz-bindgen
- name: Checkout rz-bindgen (dev)
if: github.ref != 'refs/heads/stable'
run: git clone -b dev https://github.com/rizinorg/rz-bindgen
- name: Install dependencies
run: |
sudo pip install meson ninja
Expand Down
Loading