From: Victor Lira <victorm.lira@amd.com>
The current configuration of Xen CI generates test binaries using "export"
jobs in every pipeline. This unecessarily uses a large amount of storage
and network traffic because artifacts are duplicated over each project and
branch that uses this configuration.
Instead, use a separate repository to store test binaries, then they can be
retrieved using GitLab CI built-in functionality. A test job can pull
binaries from another project job using the "needs" syntax. This will pull
from the most recent successful job on the specified branch. However, it
will not wait for a currently running job to finish and will instead pull
from previous jobs. This should not be a problem as we expect to change the
binaries only rarely.
Victor Lira (1):
build: add x86_64 xen artifacts (argo)
.gitlab-ci.yml | 50 ++++++++++++++++++++
binaries/.gitignore | 3 ++
images/Makefile | 20 ++++++++
images/alpine/x86_64-build.dockerfile | 31 +++++++++++++
images/alpine/x86_64-rootfs.dockerfile | 4 ++
scripts/x86_64-argo-linux.sh | 63 ++++++++++++++++++++++++++
scripts/x86_64-kernel-linux.sh | 31 +++++++++++++
scripts/x86_64-rootfs-alpine.sh | 58 ++++++++++++++++++++++++
8 files changed, 260 insertions(+)
create mode 100644 .gitlab-ci.yml
create mode 100644 binaries/.gitignore
create mode 100644 images/Makefile
create mode 100644 images/alpine/x86_64-build.dockerfile
create mode 100644 images/alpine/x86_64-rootfs.dockerfile
create mode 100755 scripts/x86_64-argo-linux.sh
create mode 100755 scripts/x86_64-kernel-linux.sh
create mode 100755 scripts/x86_64-rootfs-alpine.sh
--
2.25.1