Skip to content

Commit

Permalink
ci: Use built-in way to pass environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ventureoo committed Jan 19, 2025
1 parent f2de7fe commit 2605aea
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@ jobs:
- name: Build (GCC)
id: makepkg
uses: CachyOS/pkgbuild-action@master
env:
_build_zfs: yes
_use_llvm_lto: none
with:
envvars: "_build_zfs=y _use_auto_optimization= _cc_harder= _localmodcfg=y _localmodcfg_path=/github/workspace/modprobed.db"
pkgdir: "linux-cachyos"
namcapExcludeRules: "invalidstartdir"
makepkgArgs: "--skipchecksums --skippgpcheck --noconfirm -s"
Expand All @@ -28,8 +30,9 @@ jobs:
- name: Build (LLVM)
id: makepkg
uses: CachyOS/pkgbuild-action@master
env:
_build_zfs: yes
with:
envvars: "CI=1 _build_zfs=y _use_llvm_lto=thin _use_auto_optimization= _cc_harder= _localmodcfg=y _localmodcfg_path=/github/workspace/modprobed.db"
pkgdir: "linux-cachyos"
namcapExcludeRules: "invalidstartdir"
makepkgArgs: "--skipchecksums --skippgpcheck --noconfirm -s"

0 comments on commit 2605aea

Please sign in to comment.