mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
syntax
This commit is contained in:
parent
09c2d08540
commit
16ff586de4
4 changed files with 25 additions and 31 deletions
|
@ -23,22 +23,19 @@ proc initContext*(): OizysContext =
|
||||||
result.ci = getEnv("GITHUB_STEP_SUMMARY") != ""
|
result.ci = getEnv("GITHUB_STEP_SUMMARY") != ""
|
||||||
|
|
||||||
var oc = initContext()
|
var oc = initContext()
|
||||||
|
|
||||||
proc checkPath(s: string): string =
|
proc checkPath(s: string): string =
|
||||||
## fail if path doesn't exist
|
## fail if path doesn't exist
|
||||||
if not s.dirExists:
|
if not s.dirExists: fatalQuit fmt"flake path: {s} does not exist"
|
||||||
errorQuit fmt"flake path: {s} does not exist"
|
|
||||||
s
|
s
|
||||||
|
|
||||||
# public api -------------------------------------
|
|
||||||
|
|
||||||
proc updateContext*(
|
proc updateContext*(
|
||||||
host: seq[string],
|
host: seq[string],
|
||||||
flake: string,
|
flake: string,
|
||||||
debug: bool,
|
debug: bool,
|
||||||
resetCache: bool
|
resetCache: bool
|
||||||
) =
|
) =
|
||||||
if host.len > 0:
|
if host.len > 0: oc.hosts = host
|
||||||
oc.hosts = host
|
|
||||||
oc.debug = debug
|
oc.debug = debug
|
||||||
oc.resetCache = resetCache
|
oc.resetCache = resetCache
|
||||||
if flake != "":
|
if flake != "":
|
||||||
|
|
|
@ -32,12 +32,12 @@ proc runCmdCapt*(
|
||||||
args = args[1..^1],
|
args = args[1..^1],
|
||||||
options = {poUsePath}
|
options = {poUsePath}
|
||||||
)
|
)
|
||||||
|
# NOTE: if I didn't use streams could I just read from the file handle instead?
|
||||||
let
|
let
|
||||||
outstrm = peekableOutputStream p
|
outstrm = peekableOutputStream p
|
||||||
errstrm = peekableErrorStream p
|
errstrm = peekableErrorStream p
|
||||||
result.exitCode = -1
|
result.exitCode = -1
|
||||||
var line: string
|
var line: string
|
||||||
# var cnt: int
|
|
||||||
while true:
|
while true:
|
||||||
if CaptStdout in capture:
|
if CaptStdout in capture:
|
||||||
if outstrm.readLine(line):
|
if outstrm.readLine(line):
|
||||||
|
@ -48,9 +48,6 @@ proc runCmdCapt*(
|
||||||
result.exitCode = peekExitCode(p)
|
result.exitCode = peekExitCode(p)
|
||||||
if result.exitCode != -1: break
|
if result.exitCode != -1: break
|
||||||
|
|
||||||
# result.exitCode = waitForExit p
|
|
||||||
# result.exitCode = waitForExit p
|
|
||||||
# close p
|
|
||||||
close p
|
close p
|
||||||
|
|
||||||
proc runCmdCaptWithSpinner*(
|
proc runCmdCaptWithSpinner*(
|
||||||
|
|
|
@ -10,9 +10,9 @@ when defined(amd64) and (defined(gcc) or defined(clang)):
|
||||||
template withTmpDir(body: untyped): untyped =
|
template withTmpDir(body: untyped): untyped =
|
||||||
let tmpDir {.inject.} = createTempDir("oizys","")
|
let tmpDir {.inject.} = createTempDir("oizys","")
|
||||||
body
|
body
|
||||||
removeDir(tmpDir)
|
removeDir tmpDir
|
||||||
|
|
||||||
var ghToken = getEnv("GITHUB_TOKEN")
|
var ghToken = getEnv "GITHUB_TOKEN"
|
||||||
|
|
||||||
proc checkToken() {.inline.} =
|
proc checkToken() {.inline.} =
|
||||||
if ghToken == "": fatalQuit "GITHUB_TOKEN not set"
|
if ghToken == "": fatalQuit "GITHUB_TOKEN not set"
|
||||||
|
@ -50,7 +50,8 @@ proc postGhApi(url: string, body: JsonNode) =
|
||||||
let response = client.post(url, body = $body)
|
let response = client.post(url, body = $body)
|
||||||
info fmt"Status: {response.code}"
|
info fmt"Status: {response.code}"
|
||||||
except:
|
except:
|
||||||
error "failed to get response code"
|
errorQuit "failed to get response code"
|
||||||
|
|
||||||
|
|
||||||
proc createDispatch*(workflowFileName: string, `ref`: string) =
|
proc createDispatch*(workflowFileName: string, `ref`: string) =
|
||||||
## https://docs.github.com/en/rest/actions/workflows?apiVersion=2022-11-28#create-a-workflow-dispatch-event
|
## 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
|
checkGit code
|
||||||
|
|
||||||
proc status(r: GitRepo) =
|
proc status(r: GitRepo) =
|
||||||
let (output, _, code) = runCmdCapt(r.git("status", "--porcelain"))
|
let (output, _, code) = runCmdCapt r.git("status", "--porcelain")
|
||||||
checkGit code
|
checkGit code
|
||||||
if output.len > 0:
|
if output.len > 0:
|
||||||
info "unstaged commits, cowardly exiting..."
|
info "unstaged commits, cowardly exiting..."
|
||||||
|
@ -188,6 +189,4 @@ proc rebase(r: GitRepo, `ref`: string) =
|
||||||
proc updateRepo*() =
|
proc updateRepo*() =
|
||||||
let repo = GitRepo(path: getFlake())
|
let repo = GitRepo(path: getFlake())
|
||||||
fetch repo
|
fetch repo
|
||||||
rebase repo, "origin/flake-lock"
|
rebase(repo, "origin/flake-lock")
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -2,8 +2,7 @@ import std/macros
|
||||||
|
|
||||||
type
|
type
|
||||||
OverlayKind = enum
|
OverlayKind = enum
|
||||||
oPre
|
oPre, oPost
|
||||||
oPost
|
|
||||||
OverlayProc = object
|
OverlayProc = object
|
||||||
node: NimNode
|
node: NimNode
|
||||||
kind: OverlayKind
|
kind: OverlayKind
|
||||||
|
@ -27,6 +26,7 @@ proc applyOverlay(child: NimNode, overlayProc: OverlayProc) =
|
||||||
macro overlay*(x: untyped): untyped =
|
macro overlay*(x: untyped): untyped =
|
||||||
##[
|
##[
|
||||||
apply pre and post operations to procs:
|
apply pre and post operations to procs:
|
||||||
|
|
||||||
```nim
|
```nim
|
||||||
overlay:
|
overlay:
|
||||||
proc pre(a: bool) =
|
proc pre(a: bool) =
|
||||||
|
@ -44,6 +44,7 @@ macro overlay*(x: untyped): untyped =
|
||||||
echo "after"
|
echo "after"
|
||||||
```
|
```
|
||||||
]##
|
]##
|
||||||
|
|
||||||
result = newStmtList()
|
result = newStmtList()
|
||||||
var overlays: seq[OverlayProc]
|
var overlays: seq[OverlayProc]
|
||||||
for child in x.children():
|
for child in x.children():
|
||||||
|
|
Loading…
Reference in a new issue