[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] automation: also specify xen binary as artifact on x86_64
commit 3c21dba1891d80b89bb4680d12febc17f8254305 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Mon Nov 19 15:03:58 2018 +0000 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Tue Nov 20 18:15:39 2018 +0000 automation: also specify xen binary as artifact on x86_64 ... so that it can be passed on to test stage. Note that xen is only extracted for x86_64 build since others may not have that. Use a directory to account for possibly different file names on Arm. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Doug Goldstein <cardoe@xxxxxxxxxx> --- .gitlab-ci.yml | 1 + automation/scripts/build | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9f3504f15d..a1672a9a91 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ stages: - ./automation/scripts/build 2>&1 | tee build.log artifacts: paths: + - binaries/ - xen-config - '*.log' when: always diff --git a/automation/scripts/build b/automation/scripts/build index a1f9a5da56..e3672a3626 100755 --- a/automation/scripts/build +++ b/automation/scripts/build @@ -28,6 +28,10 @@ make -j$(nproc) dist # Extract artifacts to avoid getting rewritten by customised builds cp xen/.config xen-config +mkdir binaries +if [[ "${XEN_TARGET_ARCH}" == "x86_64" ]]; then + cp xen/xen binaries/xen +fi # Build all the configs we care about case ${XEN_TARGET_ARCH} in -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |