Add build workflow
This commit is contained in:
parent
bf4c685344
commit
4e1001c910
17
.github/workflows/build.yaml
vendored
Normal file
17
.github/workflows/build.yaml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
name: build
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: ghcr.io/catthehacker/ubuntu:runner-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: cachix/install-nix-action@v27
|
||||
- name: run flacke check
|
||||
run: nix flake check
|
||||
- name: build packages
|
||||
run: ./scripts/build-all.sh
|
11
scripts/build-all.sh
Executable file
11
scripts/build-all.sh
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env bash
|
||||
set -eo pipefail
|
||||
|
||||
packages=$(nix flake show --json --all-systems| \
|
||||
jq -r '.packages["x86_64-linux"] | keys[] | ".#packages.x86_64-linux.\(.)"')
|
||||
|
||||
while IFS= read -r line; do
|
||||
echo "building package $line"
|
||||
nix build -L "$line"
|
||||
echo "done building package $line"
|
||||
done <<< "$packages"
|
Loading…
Reference in New Issue
Block a user