wl: implement security-context-v1
All checks were successful
test / test (push) Successful in 38s

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
2024-12-06 03:34:13 +09:00
parent 1b5b089c78
commit 2d606b1f4b
6 changed files with 285 additions and 16 deletions

View File

@@ -8,7 +8,23 @@ on:
jobs:
release:
runs-on: ubuntu-latest
container:
image: node:16-bookworm-slim
steps:
- name: Get dependencies
run: >-
echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list.d/backports.list &&
apt-get update &&
apt-get install -y
git
gcc
pkg-config
libwayland-dev
wayland-protocols/bookworm-backports
libxcb1-dev
libacl1-dev
if: ${{ runner.os == 'Linux' }}
- name: Checkout
uses: actions/checkout@v4
with:
@@ -19,14 +35,9 @@ jobs:
with:
go-version: '>=1.23.0'
- name: Get dependencies
- name: Go generate
run: >-
apt-get update &&
apt-get install -y
gcc
pkg-config
libacl1-dev
if: ${{ runner.os == 'Linux' }}
go generate ./...
- name: Build for Linux
run: >-

View File

@@ -7,7 +7,23 @@ on:
jobs:
test:
runs-on: ubuntu-latest
container:
image: node:16-bookworm-slim
steps:
- name: Get dependencies
run: >-
echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list.d/backports.list &&
apt-get update &&
apt-get install -y
git
gcc
pkg-config
libwayland-dev
wayland-protocols/bookworm-backports
libxcb1-dev
libacl1-dev
if: ${{ runner.os == 'Linux' }}
- name: Checkout
uses: actions/checkout@v4
with:
@@ -18,14 +34,9 @@ jobs:
with:
go-version: '>=1.23.0'
- name: Get dependencies
- name: Go generate
run: >-
apt-get update &&
apt-get install -y
gcc
pkg-config
libacl1-dev
if: ${{ runner.os == 'Linux' }}
go generate ./...
- name: Run tests
run: >-