From d0e390602ba5c51dd420c57fa1d10020d199645b Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 7 Sep 2023 20:41:45 +0000 Subject: [PATCH] ci: Add initial attempt --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..1eae9b7 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ + +# Yes, we're using FCOS as a buildroot +image: quay.io/fedora/fedora-coreos:stable + +stages: + - build + +build: + stage: build + script: + - rpm-ostree install distribution-gpg-keys + - rpm-ostree compose image --format=oci-archive fedora.yaml fedora.oci-archive +