The GNOME Build Metadata repository is where the GNOME release team manages build metadata for building the GNOME software stack.
The content of this repository is a BuildStream project. Instructions for building GNOME can be found here.
To update the refs you can use Toolbox along with the script in .gitlab-ci/scripts/update-refs.py
and
git push options to create a merge request.
$ toolbox create -i registry.gitlab.com/freedesktop-sdk/infrastructure/freedesktop-sdk-docker-images/bst2 $ toolbox run -c bst2 ./.gitlab-ci/scripts/update-refs.py --new-branch $ git push -o merge_request.create -o merge_request.assign="marge-bot" -o merge_request.remove_source_branch -f origin -u HEAD
Some of the possible build outputs are documented below.
To build a runtime locally, for debugging:
$ bst build flatpak-runtimes.bst $ bst checkout flatpak-runtimes.bst repo $ flatpak remote-add --user --no-gpg-verify testrepo repo $ flatpak install testrepo org.gnome.Platform
To build the GNOME OS ISO installer locally:
Generate keys:
$ make -C files/boot-keys clean $ make -C files/boot-keys
Build the image:
$ bst build gnomeos/live-image.bst
Checkout image:
$ bst artifact checkout gnomeos/live-image.bst --directory ./iso
OCI images are built and pushed to the container registry through the CI job 'deploy-oci'. Currently there are three images 'platform', 'sdk' and 'core':
- platform - the same
/usr
tree as theorg.gnome.Platform
flatpak runtime - sdk - the same as the
org.gnome.Sdk
flatpak runtime andtoolbox
compatible - core - core devel OS tree including the dependencies to build all (most) of the 'core' elements in 'core.bst', but without the cli tools and utilities (podman, toolbox, bst, etc)
These images can be found in the container registry quay.io.
While they are "toolbox compatible", there isn't any update mechanism in them, so you should be aware that the containers created locally for development will become stale and you will need to remove and recreate them with an up to date image often. Their main usecase is for gitlab-ci which always pulls the latest image.
The following is a summary of what is being exported by this repository CI pipelines:
Output | When | Example |
---|---|---|
Flatpak runtimes (master) | Merged to master | flatpak install flathub org.gnome.Platform//master |
Flatpak runtimes (beta) | Merged to stable branch (and flagged as "beta") | flatpak install flathub-beta org.gnome.Platform//47beta |
Flatpak runtimes (stable) | Merged to stable branch | flatpak install flathub org.gnome.Platform//46 |
GNOME OS installer and disks images (latest) | Merged to master (and tests passed or ran manually) | wget https://os.gnome.org/download/latest/gnome_os_installer.iso |
GNOME OS installer and disks images (stable) | On tag added | wget https://os.gnome.org/download/stable/47/gnome_os_installer_x86_64.iso |
OCI Images (latest, master and nightly) | Merged to master | podman pull quay.io/gnome_infrastructure/gnome-build-meta:core-nightly |
OCI Images (stable) | On tag added | podman pull quay.io/gnome_infrastructure/gnome-build-meta:core-47 |
It's possible to build for another architecture using BuildStream and Qemu
This can be combined with the toolbox image we use for bst2 as it has qemu and everything else needed.
Open Workspace for the element you need (Optional):
$ toolbox enter bst2 $ bst workspace open --no-checkout sdk/gjs.bst --directory ~/Projects/gjs/
Build the element:
$ bst -o arch i686 build sdk/gjs.bst
- Get a build or runtime shell for testing::
$ bst -o arch i686 build --shell sdk/gjs.bst $ bst -o arch i686 shell sdk/gjs.bst