mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-21 05:10:45 -06:00
Compare commits
3 commits
a459ea2ad1
...
0340586ec7
Author | SHA1 | Date | |
---|---|---|---|
0340586ec7 | |||
c01c5309f5 | |||
d3a9286723 |
3 changed files with 5 additions and 10 deletions
|
@ -845,11 +845,11 @@
|
|||
"nixpkgs": "nixpkgs_6"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1727710797,
|
||||
"narHash": "sha256-2Xr8tAZoLrMkvD0Sil6053x2Lbsy8cvmlk8sApSWdD0=",
|
||||
"lastModified": 1727812556,
|
||||
"narHash": "sha256-U9cEs2W0eLvIS0kEMBGP8eZMdrpoHqynByth/mu2Nvc=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nixpkgs-wayland",
|
||||
"rev": "50e4446e6dce9e1e52455f5b87bb91e83a538468",
|
||||
"rev": "a40e6b047b6166aed5fab801e99a8d6b980d4680",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -5,7 +5,6 @@ import oizys/[context, github, nix, overlay]# 3, logging
|
|||
|
||||
addHandler(
|
||||
newFancyConsoleLogger(
|
||||
levelThreshold = lvlAll,
|
||||
fmtPrefix = $bb"[b magenta]oizys"
|
||||
)
|
||||
)
|
||||
|
@ -37,7 +36,7 @@ overlay:
|
|||
nixBuildHostDry(minimal, rest)
|
||||
|
||||
proc output(yes: bool = false) =
|
||||
## output
|
||||
## nixos config attr
|
||||
echo nixosConfigAttrs().join(" ")
|
||||
|
||||
proc update(
|
||||
|
|
|
@ -186,7 +186,7 @@ proc writeDervationsToStepSummary(drvs: seq[string]) =
|
|||
let rows = collect(
|
||||
for drv in drvs:
|
||||
let (name,hash) = splitDrv(drv)
|
||||
fmt"| {name} | {hash} |"
|
||||
fmt"| {name} | `{hash}` |"
|
||||
)
|
||||
let summaryFilePath = getEnv("GITHUB_STEP_SUMMARY")
|
||||
if summaryFilePath == "": fatalQuit "no github step summary found"
|
||||
|
@ -233,10 +233,6 @@ proc nixBuildHostDry*(minimal: bool, rest: seq[string]) =
|
|||
let output = parseDryRunOutput err
|
||||
display output
|
||||
|
||||
# TODO: Add to bbansi
|
||||
template `bbfmt`(pattern: static string): untyped =
|
||||
bb(fmt(pattern))
|
||||
|
||||
proc nixBuildWithCache*(minimal: bool, name: string, rest:seq[string]) =
|
||||
if findExe("cachix") == "": fatalQuit "is cachix installed?"
|
||||
info bbfmt"building and pushing to cache: [b]{name}"
|
||||
|
|
Loading…
Reference in a new issue