Skip to content

Commit

Permalink
Add github actions workflows for fork
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickTaibel committed Sep 5, 2024
1 parent a7edd67 commit 0829256
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 112 deletions.
112 changes: 0 additions & 112 deletions .github/workflows/build.yml

This file was deleted.

56 changes: 56 additions & 0 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Build Debian package

on: [push]

jobs:
build:
runs-on: ubuntu-latest
container: python:3.12-bookworm
steps:
- uses: actions/checkout@v3
- name: Generate version string for tag
if: github.ref_type == 'tag'
run: |
REF=${{ github.ref_name }}
REF_STRIPPED=${REF:1}
echo "VERSION_DEB=${REF_STRIPPED}" >> $GITHUB_ENV
echo "VERSION_PY=${REF_STRIPPED/-anx.v/.}" >> $GITHUB_ENV
shell: bash
- name: Generate version string for branch
if: github.ref_type != 'tag'
run: |
echo "VERSION_DEB=0.0.0.${{ github.ref_name }}" >> $GITHUB_ENV
echo "VERSION_PY=0.0.0" >> $GITHUB_ENV
shell: bash
- name: Build
run: |
apt update && apt install -y build-essential cmake pkg-config ninja-build swig ca-certificates libssl-dev libsasl2-dev libwebsockets-dev
mkdir -p build out
cmake ./ -B build -DCMAKE_INSTALL_PREFIX=install/usr -DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -DBUILD_CPP=OFF
cmake --build build -t install
shell: bash
- name: Create .deb file
run: |
cp -r ci/DEBIAN install/
sed -i s/VERSION/${{ env.VERSION_DEB }}/ install/DEBIAN/control
dpkg-deb --build install out/libqpid-proton11-linux_x86_64.deb
- name: Upload .deb file
uses: actions/upload-artifact@v4
with:
name: libqpid-proton11-linux_x86_64.deb
path: out/libqpid-proton11-linux_x86_64.deb
- name: Build wheel
run: |
pip wheel build/python
cp python_qpid_proton*.whl out/python_qpid_proton-${{ env.VERSION_PY }}-cp312-cp312-linux_x86_64.whl
- name: Upload wheel
uses: actions/upload-artifact@v4
with:
name: python_qpid_proton-${{ env.VERSION_PY }}-cp312-cp312-linux_x86_64.whl
path: out/python_qpid_proton-${{ env.VERSION_PY }}-cp312-cp312-linux_x86_64.whl
- name: Create release
if: github.ref_type == 'tag'
uses: softprops/action-gh-release@v2
with:
prerelease: true
files: out/*
7 changes: 7 additions & 0 deletions ci/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Package: libqpid-proton11
Architecture: amd64
Version: VERSION
Section: libs
Priority: optional
Maintainer: local <local@local.local>
Description: Anexia fork build for qpid proton

0 comments on commit 0829256

Please sign in to comment.