Hi Guido,
The instructions in Guillep's repository have the instructions to create the image to bootstrap (the host).
Usually it is not needed, in the productive process we are using an already built image:
To bootstrap Pharo, you need to clone the Pharo repository.
Usually on the pharo repository, you can run
BUILD_NUMBER=42 BOOTSTRAP_ARCH=32 sh ./bootstrap/scripts/bootstrap.sh
This script execute the scripts that are in ./bootstrap/scripts, they are named 1-*, 2-*, 3-*, 4-*
The products are generated in the bootstrap-cache directory.
It will produce first a bootstrap.image that is the minimal image, you cannot do much on it. But It will later load packages on top of it.
Usually the first useful image is the one with the compiler.
Cheers,
Pablo
...RETRY->BaselineOfPharoBootstrapProcess
...RETRY->BaselineOfPharoBootstrapProcess
...FAILED->BaselineOfPharoBootstrapProcessCould not resolve: BaselineOfPharoBootstrapProcess [BaselineOfPharoBootstrapProcess] in /Users/guidochari/Documents/Projects/Research/Nopsys/CogNOS/image/pharo-local/package-cache filetree:///Users/guidochari/Documents/Projects/Research/Nopsys/PharoBootstrap
I then resort to just execute the command that travis executes (./scripts/install-packages.sh) and it works. But when I open the image I can not find PBBootstrapSpur3250, needed for running the bootstrapping.
Best,
--