Skip to content

Commit

Permalink
Merge pull request #874 from TrekkieCoder/main
Browse files Browse the repository at this point in the history
gh-868 Generate packages runnable with systemd
  • Loading branch information
UltraInstinct14 authored Nov 12, 2024
2 parents 3e498c8 + 06cb919 commit d80533f
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/package.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: OS-Build-Releases

on:
schedule:
# Runs "At 22:00 UTC every day-of-week"
- cron: '0 22 * * *'
workflow_dispatch:
inputs:
tagName:
description: 'Tag Name (e.g 0.9.7 or latest)'
required: true
default: 'latest'

jobs:
build:
name: Build OS packages
runs-on: ubuntu-20.04
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v2
- uses: actions/setup-go@v3
with:
go-version: '>=1.18.0'
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get -y install clang-10 llvm libelf-dev gcc-multilib libpcap-dev elfutils dwarves git linux-tools-$(uname -r) libbsd-dev bridge-utils unzip build-essential bison flex iproute2
- name: Perform any pre-requisite operations
run: |
sudo mkdir -p /opt/loxilb/
sudo apt-get purge -y libssl-dev 2>&1 >> /dev/null | true
- name: Build loxilb deb package
run: |
git clone https://github.com/loxilb-io/tools.git build-tools && cd build-tools/pkg/ && make major=${{ github.event.inputs.tagName }} && cd -
- name: Upload the package to a release
if: github.repository == 'loxilb-io/loxilb'
uses: ncipollo/release-action@v1
with:
tag: v${{ github.event.inputs.tagName }}
allowUpdates: true
artifacts: "build-tools/pkg/*.deb"

0 comments on commit d80533f

Please sign in to comment.