mirror of
https://github.com/utoni/nDPId.git
synced 2026-05-17 03:56:43 +00:00
Some checks failed
ArchLinux PKGBUILD / build (push) Waiting to run
CentOs / centos8 (push) Waiting to run
FreeBSD Build / Build and Test (push) Waiting to run
RPM Build / build (push) Waiting to run
Build / macOS-14 cc (push) Waiting to run
Build / ubuntu-latest clang (push) Waiting to run
Build / ubuntu-latest clang-1 (push) Waiting to run
Build / ubuntu-22.04 clang-12 (push) Waiting to run
Build / ubuntu-latest gcc (push) Waiting to run
Build / ubuntu-latest gcc-1 (push) Waiting to run
Build / ubuntu-latest gcc-2 (push) Waiting to run
Build / ubuntu-22.04 gcc-10 (push) Waiting to run
Build / ubuntu-22.04 gcc-9 (push) Waiting to run
SonarQube Scan / Build and analyze (push) Waiting to run
OpenWrt Build / arm_cortex-a15_neon-vfpv4 armvirt-32 (push) Has been cancelled
OpenWrt Build / arm_cortex-a9_vfpv3-d16 mvebu-cortexa9 (push) Has been cancelled
OpenWrt Build / x86_64 x86-64 (push) Has been cancelled
- updated deprecated Github Actions checkout/upload-artifact Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
38 lines
866 B
YAML
38 lines
866 B
YAML
name: ArchLinux PKGBUILD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- tmp
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
types: [opened, synchronize, reopened]
|
|
release:
|
|
types: [created]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
CMAKE_C_FLAGS: -Werror
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
submodules: false
|
|
fetch-depth: 1
|
|
- name: Prepare for ArchLinux packaging
|
|
run: |
|
|
sudo chmod -R 0777 .
|
|
mv -v packages/archlinux packages/ndpid-testing
|
|
- uses: 2m/arch-pkgbuild-builder@v1.16
|
|
with:
|
|
debug: true
|
|
target: 'pkgbuild'
|
|
pkgname: 'packages/ndpid-testing'
|
|
- name: Upload PKG
|
|
uses: actions/upload-artifact@v7
|
|
with:
|
|
name: nDPId-archlinux-packages
|
|
path: packages/ndpid-testing/*.pkg.tar.zst
|