Skip to content

Merge pull request #271 from truenas/NAS-128866-24.04.2 #742

Merge pull request #271 from truenas/NAS-128866-24.04.2

Merge pull request #271 from truenas/NAS-128866-24.04.2 #742

Workflow file for this run

name: CI
on: [push]
jobs:
build-deb:
runs-on: ubuntu-latest
container:
image: ixsystems/zfs:latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install Dependencies
run: |
apt update
apt install -y debhelper-compat dh-python cython3 python3-all-dev python3-setuptools devscripts
- name: Build deb package
run: >
dpkg-buildpackage
-B
--no-sign
-jauto
- name: Create artifacts dir
run: mkdir artifacts
if: success()
- name: Move artifacts
run: mv ../*.deb artifacts
if: success()
- uses: actions/upload-artifact@v1
with:
name: py-libzfs
path: artifacts
if: success()