Skip to content

NAS-132049 / 24.10.0.1 / add ixnvdimm output to debug (by yocalebo) (… #725

NAS-132049 / 24.10.0.1 / add ixnvdimm output to debug (by yocalebo) (…

NAS-132049 / 24.10.0.1 / add ixnvdimm output to debug (by yocalebo) (… #725

Workflow file for this run

name: CI
on: [push]
jobs:
build-deb:
runs-on: ubuntu-latest
container:
image: ghcr.io/truenas/middleware:master
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup dev environment
run: /usr/bin/install-dev-tools
- name: Install Dependencies
run: apt update && apt install -y debhelper-compat dh-python python3-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@v4
with:
name: python3-ixdiagnose
path: artifacts
if: success()