.gitea/workflows/check: build with matrix
Build nix flake checks / build (checkStaticExtsCross) (push) Failing after 42s
Build nix flake checks / build (checkStaticExts) (push) Failing after 38s
Build nix flake checks / build (checkStaticExtsCrossAndroid) (push) Failing after 1m3s

This commit is contained in:
2026-06-05 00:19:28 +09:00
parent 874e22c2e7
commit db4111703a
+10 -3
View File
@@ -1,4 +1,4 @@
name: "Run nix flake check"
name: "Build nix flake checks"
on:
workflow_dispatch:
pull_request:
@@ -6,6 +6,13 @@ on:
jobs:
build:
runs-on: debian-latest
strategy:
matrix:
package: [
"checkStaticExts",
"checkStaticExtsCross",
"checkStaticExtsCrossAndroid",
]
steps:
- uses: actions/checkout@v6
@@ -15,5 +22,5 @@ jobs:
- name: Install nix
uses: https://github.com/cachix/install-nix-action@v31
- name: Nix flake check
run: nix flake check -L
- name: Nix build check package
run: nix build .#checks.x86_64-llinux.${{ matrix.package }} -L