Skip to content

Instantly share code, notes, and snippets.

@samueldr
Created February 16, 2019 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samueldr/06914a4ae5da8c5d3e5292206a1115f9 to your computer and use it in GitHub Desktop.
Save samueldr/06914a4ae5da8c5d3e5292206a1115f9 to your computer and use it in GitHub Desktop.
workflow "Build the thing" {
on = "push"
resolves = [
"docker://nixos/nix",
]
}
action "docker://nixos/nix" {
uses = "docker://nixos/nix"
runs = "nix-build"
args = "-A pkgsCross.aarch64-multiplatform.ROC-RK3399-PC.firmware"
env = {
NIXPKGS_ALLOW_UNFREE = "1"
NIX_PATH = "nixpkgs=channel:nixos-13.10"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment