higepon / mosh

Mosh is a free and fast interpreter for Scheme as specified in the R6RS.
http://mosh.monaos.org/
Other
181 stars 13 forks source link

Job failure on akku #237

Open higepon opened 1 year ago

higepon commented 1 year ago

https://gitlab.com/weinholt/laesare/-/jobs/3384970921

higepon commented 1 year ago

The error is saying platform-expand-time-features is not found.

$ .akku/env ./run-tests.sh
 Condition components:
 1. &who             who: platform-expand-time-features
 2. &message         message: "unbound identifier
     at (<transcoded-textual-input-port 
            <binary-input-port /builds/weinholt/laesare/.akku/lib/srfi/private/registry.mosh.sls>> 40)"

I believe platform-expand-time-features is defined in platform-features.mosh.sls and imported as (for (prefix (srfi private platform-features) platform-) run expand)) but I don't see expand-time-features in platform-features.mosh.sls.

For example in lib/srfi/private/platform-features.loko.sls, there's expand-time-features implementation as follows.

  (define (expand-time-features)
    '(loko syntax-case))