Files
nix-custom-sqlite/.gitea/workflows/check.yaml
T
oysteikt db4111703a
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
.gitea/workflows/check: build with matrix
2026-06-05 00:19:28 +09:00

27 lines
597 B
YAML

name: "Build nix flake checks"
on:
workflow_dispatch:
pull_request:
push:
jobs:
build:
runs-on: debian-latest
strategy:
matrix:
package: [
"checkStaticExts",
"checkStaticExtsCross",
"checkStaticExtsCrossAndroid",
]
steps:
- uses: actions/checkout@v6
- name: Install sudo
run: apt-get update && apt-get -y install sudo
- name: Install nix
uses: https://github.com/cachix/install-nix-action@v31
- name: Nix build check package
run: nix build .#checks.x86_64-llinux.${{ matrix.package }} -L