You are reading a single comment by @Vlad and its replies. Click here to read the full conversation.
  • @cefitzger, I use docker to build espruino firmware. It is a mater of 10 mins to install docker daemon and you have a proper stable environment. More details here: https://github.com/espruino/Espruino/blo­b/master/Dockerfile

    Once you've build it first time, you can then use this docker file to speed up the process (it will just copy sources and won't install build chain):

    FROM espruino:latest
    
    COPY . /espruino
    WORKDIR /espruino
    
    ENV RELEASE 1
    CMD ["bash", "-c", "source scripts/provision.sh ALL && make"]
    
About

Avatar for Vlad @Vlad started