Files
nix-custom-sqlite/.gitea/workflows/check.yaml
T
oysteikt de8601180d
Build nix flake checks / build (checkStaticExtsCross) (push) Failing after 1m1s
Build nix flake checks / build (checkStaticExts) (push) Successful in 2m36s
Build nix flake checks / build (checkStaticExtsCrossAndroid) (push) Failing after 10m31s
.gitea/workflows/check: build with matrix
2026-06-05 00:21:58 +09:00

27 lines
596 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-linux.${{ matrix.package }} -L