-
-
Notifications
You must be signed in to change notification settings - Fork 41
38 lines (37 loc) · 962 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Build and lint
on:
push:
paths:
- 'linux-cachyos/PKGBUILD'
- '.github/workflows/lint.yml'
workflow_dispatch:
jobs:
linux-cachyos-zfs-gcc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build (GCC)
id: makepkg
uses: CachyOS/pkgbuild-action@master
env:
_build_zfs: yes
_use_llvm_lto: none
with:
pkgdir: "linux-cachyos"
namcapExcludeRules: "invalidstartdir"
makepkgArgs: "--skipchecksums --skippgpcheck --noconfirm -s"
linux-cachyos-zfs-llvm:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build (LLVM)
id: makepkg
uses: CachyOS/pkgbuild-action@master
env:
_build_zfs: yes
with:
pkgdir: "linux-cachyos"
namcapExcludeRules: "invalidstartdir"
makepkgArgs: "--skipchecksums --skippgpcheck --noconfirm -s"