Skip to content

Commit cb5bf4a

Browse files
committed
chore: add ci
1 parent 714d6d9 commit cb5bf4a

File tree

2 files changed

+28
-0
lines changed

2 files changed

+28
-0
lines changed

.github/workflows/build.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: build lib
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
name: "build lib"
14+
runs-on: ubuntu-latest
15+
container:
16+
image: archlinux:latest
17+
steps:
18+
- name: Install Packages
19+
run: |
20+
pacman -Syu --noconfirm base-devel git nasm jq ninja cpio wget unzip cmake
21+
pacman -Syu --noconfirm qt6-wayland
22+
- name: Build
23+
run: |
24+
cmake -B build
25+
cmake --build build

.neocmakelint.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
command_upcase = "ignore" # "lowcase", "upcase"
2+
enable_external_cmake_lint = false # true to use external cmake-lint
3+
line_max_words = 80 # internal lint just supports longest check

0 commit comments

Comments
 (0)