Skip to content

Fixes and backport

Fixes and backport #21

Workflow file for this run

name: build-plugin
on:
push:
branches:
- master
- dev
pull_request:
# Automatically cancel any previous workflow on new push.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
cancel-in-progress: true
jobs:
linux:
runs-on: ubuntu-latest
container:
image: alpine:edge
options: --cap-add=SYS_PTRACE --security-opt seccomp=unconfined --security-opt apparmor=unconfined
steps:
- name: Checkout commit
uses: actions/checkout@v3
- name: Install dependencies
run: apk add --no-cache bash git gcc g++ linux-headers cmake curl wget jq unzip py3-wheel py3-setuptools py3-pip meson ninja tar xz alpine-sdk
- name: build & run the plugin
run: bash .ci-scripts/ci-build-linux.sh "${{ github.ref_name }}"