Fixes and backport #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 pkg-config | |
- name: build & run the plugin | |
run: bash .ci-scripts/ci-build-linux.sh "${{ github.ref_name }}" |