rename port to omp-pygienium (repo renamed)
Some checks failed
port-to-omp / port (push) Failing after 5s

This commit is contained in:
2026-08-10 15:18:01 -04:00
parent f6f997bb21
commit be76b31a6e
2 changed files with 5 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
name: port-to-omp name: port-to-omp
# Regenerate the omp port of pygenium from this repo and push it to # Regenerate the omp port of pygenium from this repo and push it to
# Mike/omp-pygenium. # Mike/omp-pygienium.
# #
# Prerequisites on git.freno.me: # Prerequisites on git.freno.me:
# - an access token with write:repository scope, stored as the repo/org # - an access token with write:repository scope, stored as the repo/org
@@ -29,7 +29,7 @@ jobs:
- name: Port to omp - name: Port to omp
env: env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }} GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
OMP_REPO: omp-pygenium OMP_REPO: omp-pygienium
run: | run: |
set -euo pipefail set -euo pipefail
URL="https://oauth2:${GITEA_TOKEN}@git.freno.me/Mike/${OMP_REPO}.git" URL="https://oauth2:${GITEA_TOKEN}@git.freno.me/Mike/${OMP_REPO}.git"

View File

@@ -3,7 +3,7 @@
* port-to-omp.mjs — regenerate the omp port of pygenium from this repo. * port-to-omp.mjs — regenerate the omp port of pygenium from this repo.
* *
* The omp port is "base + patch layer"; this script IS the patch layer. This * The omp port is "base + patch layer"; this script IS the patch layer. This
* repo is the single source of truth; ~/.omp/agent/extensions/pygenium (or * repo is the single source of truth; ~/.omp/agent/extensions/pygienium (or
* --out) is a generated artifact. Every op asserts its target and fails * --out) is a generated artifact. Every op asserts its target and fails
* loudly on base drift — never silently producing a stale port. * loudly on base drift — never silently producing a stale port.
* *
@@ -11,7 +11,7 @@
* bun port-to-omp.mjs # write ~/.omp/agent/extensions/pygenium * bun port-to-omp.mjs # write ~/.omp/agent/extensions/pygenium
* bun port-to-omp.mjs --out <dir> # write elsewhere (CI: the omp repo clone) * bun port-to-omp.mjs --out <dir> # write elsewhere (CI: the omp repo clone)
* *
* CI: .gitea/workflows/port-to-omp.yml clones the omp-pygenium repo and * CI: .gitea/workflows/port-to-omp.yml clones the omp-pygienium repo and
* runs this script into it, then commits + pushes when the port changed. * runs this script into it, then commits + pushes when the port changed.
*/ */
@@ -252,7 +252,7 @@ const PYGENIUM_TSCONFIG = `{
// ─── main ─────────────────────────────────────────────────────────────────── // ─── main ───────────────────────────────────────────────────────────────────
const OUT_DEFAULT = join(homedir(), ".omp", "agent", "extensions", "pygenium"); const OUT_DEFAULT = join(homedir(), ".omp", "agent", "extensions", "pygienium");
function portExtension() { function portExtension() {
const srcDir = import.meta.dir; const srcDir = import.meta.dir;