Compare commits

...

24 Commits

Author SHA1 Message Date
88b881cd44 vars/gitea
Some checks failed
/ job (push) Failing after 3m22s
2025-08-19 19:58:03 +02:00
60e1484c78 vars/github 2025-08-19 19:52:58 +02:00
56822df8a5 >
Some checks are pending
/ job (push) Has started running
2025-06-08 20:58:57 +02:00
1b2a761cc4 quoteagain 2025-06-08 20:58:56 +02:00
91c2209fef reoverquote 2025-06-08 20:58:56 +02:00
4f04f669cc overquote 2025-06-08 20:58:56 +02:00
511eb4cf70 quote 2025-06-08 20:58:56 +02:00
79ada71bc6 quotes 2025-06-08 20:58:55 +02:00
1c405a7851 oneliners 2025-06-08 20:58:55 +02:00
163cf2df83 out 2025-06-08 20:58:45 +02:00
a48a88adc1 runs-on 2025-06-08 11:58:02 +02:00
eebdf48ff3 render 2025-06-08 11:55:36 +02:00
53fd3be916 list,dict 2024-10-20 20:34:21 +02:00
020175c6fe action 2024-10-20 19:51:09 +02:00
100687cad5 act 2024-10-14 22:44:03 +02:00
983017f455 source: output 2024-10-14 21:48:31 +02:00
72a0f52c38 workflow/action 2024-10-14 15:24:32 +02:00
2fde2aeead check 2024-10-14 14:37:25 +02:00
a433d401be build 2024-10-14 14:37:01 +02:00
a6cbf0bb05 github/""
Some checks failed
/ job (push) Has been cancelled
2024-07-29 21:55:25 +02:00
b6f70cf3c1 github/"" 2024-07-29 21:53:59 +02:00
640cc03395 gitlab/""
Some checks failed
/ job (push) Has been cancelled
2024-07-29 20:07:47 +02:00
b8ddf85152 gitlab/echo|sh 2024-07-29 20:05:19 +02:00
639ff63b9e gitlab/−sh 2024-07-29 20:02:18 +02:00
5 changed files with 36 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
on: [push] on: [push]
jobs: jobs:
job: job:
runs-on: ubuntu-latest
container: container:
image: ${{vars.DOCKER}}debian:bookworm image: ${{vars.DOCKER}}debian:bookworm
steps: steps:
@@ -11,6 +12,23 @@ jobs:
SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}} SPCD_SSH_KEY: ${{secrets.SPCD_SSH_KEY}}
run: ${{vars.SPCD}} run: ${{vars.SPCD}}
- run: spcd-check-project
- run: spcd-build-project - run: spcd-build-project
- run: spcd-browse-workspace - run: spcd-browse-workspace
- run: spcd-synchronize - uses: ./act/action
with:
arg_1: '"one"'
arg_2: >
[
"one",
"two",
]
arg_3: >
{
"one": 1,
"two": 2,
"three": 3,
}
- uses: ./act/synchronize
with:
source: output

View File

@@ -7,8 +7,8 @@ jobs:
- name: spcd - name: spcd
env: env:
SPCD: ${{vars.SPCD}} SPCD: ${{vars.SPCD}}
SPCD_GIT_MAIN: ${{vars.SPCD_GIT_MAIN}} SPCD_GIT_RWX: ${{vars.SPCD_GIT_RWX}}
SPCD_GIT_ROOT: ${{vars.SPCD_GIT_ROOT}} SPCD_GIT_SPCD: ${{vars.SPCD_GIT_SPCD}}
run: ${{vars.SPCD}} run: ${{vars.SPCD}}
- run: spcd-build-project - run: spcd-build-project

View File

@@ -8,9 +8,9 @@ jobs:
- name: spcd - name: spcd
env: env:
SPCD: ${{vars.SPCD}} SPCD: ${{vars.SPCD}}
SPCD_GIT_MAIN: ${{vars.SPCD_GIT_MAIN}} SPCD_GIT_RWX: ${{vars.SPCD_GIT_RWX}}
SPCD_GIT_ROOT: ${{vars.SPCD_GIT_ROOT}} SPCD_GIT_SPCD: ${{vars.SPCD_GIT_SPCD}}
run: echo '${{vars.SPCD}}' | tr -d '\r' | sh -s run: echo '${{vars.SPCD}}' | tr -d "\r" | sh -s
- run: spcd-build-project - run: spcd-build-project
- run: spcd-browse-workspace - run: spcd-browse-workspace

View File

@@ -1,7 +1,7 @@
image: ${DOCKER}debian:bookworm image: ${DOCKER}debian:bookworm
job: job:
script: script:
- sh ${SPCD} - echo "${SPCD}" | sh -s
- spcd-build-project - spcd-build-project
- spcd-browse-workspace - spcd-browse-workspace

11
render.py Executable file
View File

@@ -0,0 +1,11 @@
#! /usr/bin/env python3
"""Dummy build."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "prj.rwx.work")