mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-23 15:10:44 -06:00
Compare commits
3 commits
e1799718b9
...
09aa87e51f
Author | SHA1 | Date | |
---|---|---|---|
09aa87e51f | |||
16ff586de4 | |||
09c2d08540 |
6 changed files with 39 additions and 43 deletions
14
flake.lock
14
flake.lock
|
@ -504,11 +504,11 @@
|
|||
"lix": {
|
||||
"flake": false,
|
||||
"locked": {
|
||||
"lastModified": 1726016547,
|
||||
"narHash": "sha256-tB4Y3Rrv67ZdEo3HJzxYL5XX9wqtvWwIX1z8k399W0s=",
|
||||
"rev": "24db81eaf28259ab8f8334ccd6368673a26ed422",
|
||||
"lastModified": 1726072500,
|
||||
"narHash": "sha256-VfnBb2oNwLsnKbeaGyhLx2aHU+3AS3tzMpW9VdZGzgo=",
|
||||
"rev": "df0137226d7db4bfac455076be9f37dae6f01ffe",
|
||||
"type": "tarball",
|
||||
"url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/24db81eaf28259ab8f8334ccd6368673a26ed422.tar.gz?rev=24db81eaf28259ab8f8334ccd6368673a26ed422"
|
||||
"url": "https://git.lix.systems/api/v1/repos/lix-project/lix/archive/df0137226d7db4bfac455076be9f37dae6f01ffe.tar.gz?rev=df0137226d7db4bfac455076be9f37dae6f01ffe"
|
||||
},
|
||||
"original": {
|
||||
"type": "tarball",
|
||||
|
@ -744,11 +744,11 @@
|
|||
"nixpkgs": "nixpkgs_6"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1726058240,
|
||||
"narHash": "sha256-p74soeV48Sry7+wOxDJ8Gqx3JT26lH9AY4+slpJemyw=",
|
||||
"lastModified": 1726089853,
|
||||
"narHash": "sha256-cpP8CDvELczaYLY0RIfYu0vLC8kU/PgM46AZRDAQEe8=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nixpkgs-wayland",
|
||||
"rev": "5d6271a06b79364aa838cdc68c5852d383b17236",
|
||||
"rev": "ace4183b2665fa1b7acf1ce74a83519bbf828a58",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -23,11 +23,13 @@ mkOizysModule config "chrome" {
|
|||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
(chromium.override {
|
||||
commandLineArgs = [ "--force-dark-mode" ];
|
||||
enableWideVine = true;
|
||||
})
|
||||
# (chromium.override {
|
||||
# commandLineArgs = [ "--force-dark-mode" ];
|
||||
# enableWideVine = true;
|
||||
# })
|
||||
|
||||
(google-chrome.override { commandLineArgs = [ "--force-dark-mode" ]; })
|
||||
(google-chrome.override {
|
||||
commandLineArgs = [ "--force-dark-mode" ];
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
|
@ -23,22 +23,19 @@ proc initContext*(): OizysContext =
|
|||
result.ci = getEnv("GITHUB_STEP_SUMMARY") != ""
|
||||
|
||||
var oc = initContext()
|
||||
|
||||
proc checkPath(s: string): string =
|
||||
## fail if path doesn't exist
|
||||
if not s.dirExists:
|
||||
errorQuit fmt"flake path: {s} does not exist"
|
||||
if not s.dirExists: fatalQuit fmt"flake path: {s} does not exist"
|
||||
s
|
||||
|
||||
# public api -------------------------------------
|
||||
|
||||
proc updateContext*(
|
||||
host: seq[string],
|
||||
flake: string,
|
||||
debug: bool,
|
||||
resetCache: bool
|
||||
) =
|
||||
if host.len > 0:
|
||||
oc.hosts = host
|
||||
if host.len > 0: oc.hosts = host
|
||||
oc.debug = debug
|
||||
oc.resetCache = resetCache
|
||||
if flake != "":
|
||||
|
|
|
@ -32,12 +32,12 @@ proc runCmdCapt*(
|
|||
args = args[1..^1],
|
||||
options = {poUsePath}
|
||||
)
|
||||
# NOTE: if I didn't use streams could I just read from the file handle instead?
|
||||
let
|
||||
outstrm = peekableOutputStream p
|
||||
errstrm = peekableErrorStream p
|
||||
result.exitCode = -1
|
||||
var line: string
|
||||
# var cnt: int
|
||||
while true:
|
||||
if CaptStdout in capture:
|
||||
if outstrm.readLine(line):
|
||||
|
@ -48,9 +48,6 @@ proc runCmdCapt*(
|
|||
result.exitCode = peekExitCode(p)
|
||||
if result.exitCode != -1: break
|
||||
|
||||
# result.exitCode = waitForExit p
|
||||
# result.exitCode = waitForExit p
|
||||
# close p
|
||||
close p
|
||||
|
||||
proc runCmdCaptWithSpinner*(
|
||||
|
|
|
@ -10,9 +10,9 @@ when defined(amd64) and (defined(gcc) or defined(clang)):
|
|||
template withTmpDir(body: untyped): untyped =
|
||||
let tmpDir {.inject.} = createTempDir("oizys","")
|
||||
body
|
||||
removeDir(tmpDir)
|
||||
removeDir tmpDir
|
||||
|
||||
var ghToken = getEnv("GITHUB_TOKEN")
|
||||
var ghToken = getEnv "GITHUB_TOKEN"
|
||||
|
||||
proc checkToken() {.inline.} =
|
||||
if ghToken == "": fatalQuit "GITHUB_TOKEN not set"
|
||||
|
@ -50,7 +50,8 @@ proc postGhApi(url: string, body: JsonNode) =
|
|||
let response = client.post(url, body = $body)
|
||||
info fmt"Status: {response.code}"
|
||||
except:
|
||||
error "failed to get response code"
|
||||
errorQuit "failed to get response code"
|
||||
|
||||
|
||||
proc createDispatch*(workflowFileName: string, `ref`: string) =
|
||||
## https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#create-a-workflow-dispatch-event
|
||||
|
@ -174,7 +175,7 @@ proc fetch(r: GitRepo) =
|
|||
checkGit code
|
||||
|
||||
proc status(r: GitRepo) =
|
||||
let (output, _, code) = runCmdCapt(r.git("status", "--porcelain"))
|
||||
let (output, _, code) = runCmdCapt r.git("status", "--porcelain")
|
||||
checkGit code
|
||||
if output.len > 0:
|
||||
info "unstaged commits, cowardly exiting..."
|
||||
|
@ -188,6 +189,4 @@ proc rebase(r: GitRepo, `ref`: string) =
|
|||
proc updateRepo*() =
|
||||
let repo = GitRepo(path: getFlake())
|
||||
fetch repo
|
||||
rebase repo, "origin/flake-lock"
|
||||
|
||||
|
||||
rebase(repo, "origin/flake-lock")
|
||||
|
|
|
@ -2,8 +2,7 @@ import std/macros
|
|||
|
||||
type
|
||||
OverlayKind = enum
|
||||
oPre
|
||||
oPost
|
||||
oPre, oPost
|
||||
OverlayProc = object
|
||||
node: NimNode
|
||||
kind: OverlayKind
|
||||
|
@ -27,6 +26,7 @@ proc applyOverlay(child: NimNode, overlayProc: OverlayProc) =
|
|||
macro overlay*(x: untyped): untyped =
|
||||
##[
|
||||
apply pre and post operations to procs:
|
||||
|
||||
```nim
|
||||
overlay:
|
||||
proc pre(a: bool) =
|
||||
|
@ -44,6 +44,7 @@ macro overlay*(x: untyped): untyped =
|
|||
echo "after"
|
||||
```
|
||||
]##
|
||||
|
||||
result = newStmtList()
|
||||
var overlays: seq[OverlayProc]
|
||||
for child in x.children():
|
||||
|
|
Loading…
Reference in a new issue