Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -623,3 +623,9 @@ jobs:
- uses: minicompiler/register-action@v1
with:
tag: ${{ inputs.tag || github.ref_name }}
# Until the apex flip the registry lives at next.minicompiler.dev;
# the apex is still GitHub Pages and answers 405 to POST /poll
# (v0.15.4's run). Drop these two lines at the flip -- the action's
# defaults are the apex and pkg.minicompiler.dev.
registry: https://next.minicompiler.dev
index: https://pkg.minicompiler.dev
7 changes: 7 additions & 0 deletions mc.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,13 @@ name = "mc"
# includes, so the package tree serves it as the repository does.
lib = "src/core.mc"

# The translation units the registry's validator compiles inside its box, each
# on its own (docs/specs/M47-S5.md § 3: the lib alone needs a host layer first,
# and the bundle carries alternatives -- two host layers, two system layers --
# that cannot share one unit). The box is linux/x86_64. The compiler ignores
# this key; the registry reads it (spec M47 § 22).
check = ["src/mc_linux_x86_64.mc"]

# Generated from tools/bundle.list -- `cut -f2 tools/bundle.list | LC_ALL=C sort -u`
# (byte order: under a UTF-8 locale macOS collates `_` before `.`, and the
# manifest order is what the tree hash is over) -- plus two files that list
Expand Down
Loading