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

gh-868 Generate packages runnable with systemd #874

Merged
merged 2 commits into from
Nov 12, 2024
Merged
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
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"
Loading