Commit Graph

60 Commits

Author SHA1 Message Date
OpenDev Sysadmins 86f3e120ef OpenDev Migration Patch
This commit was bulk generated and pushed by the OpenDev sysadmins
as a part of the Git hosting and code review systems migration
detailed in these mailing list posts:

http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003603.html
http://lists.openstack.org/pipermail/openstack-discuss/2019-April/004920.html

Attempts have been made to correct repository namespaces and
hostnames based on simple pattern matching, but it's possible some
were updated incorrectly or missed entirely. Please reach out to us
via the contact information listed at https://opendev.org/ with any
questions you may have.
2019-04-19 19:52:37 +00:00
Dean Troyer 76f48659f9 Update .gitreview for centos75
Change-Id: Ib229f0b9c6a5dc0b183e024a89bc66095c8ec79c
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
2018-09-04 09:12:37 -05:00
zhangyangyang b2a476634c Python 3 compatibility: fix oldoctinteger
For Python 3.0, "oldoctinteger" isn't supported already, and an exception
will be raised if a literal has a leading "0" and a second character
which is a digit.

Story: 2003595
Task: 25735

Change-Id: Iec0146f9287f9eab95984608528f6535c8301cf3
Signed-off-by: zhangyangyang <zhangyangyang@unionpay.com>
2018-09-01 15:38:19 +08:00
Scott Little 58b942baf1 Capture the git context of the build
First step in build avoidance is the creation of a reference build.
We need to capture the state of all the git trees that contribute
to the reference build.

This update will save the git context to $MY_WORKSPACE/CONTEXT

The context file format is actually a shell script that can be run to
recreate the build context.

   repo init ...
   repo sync
   cd $MY_REPO/..
   source .../CONTEXT

Sample CONTEXT file ....
(cd ./cgcs-root && git checkout -f 12a1595941)
(cd ./cgcs-root/stx/git/calico && git checkout -f 12a1595941)
(cd ./cgcs-root/stx/git/ceilometer && git checkout -f 12a1595941)
...
(cd ./stx-tools && git checkout -f 12a1595941)
(cd ./.repo/manifests && git checkout -f 12a1595941)
(cd ./.repo/repo && git checkout -f 12a1595941)

This update also the git_list function, which populates the previously
introduced GIT_LIST variable, and can be used in several other code
paths where we want to find all gits in a directory tree.

Tested build/clean/edit  parallel/serial

Story: 2002835
Task: 22754
Change-Id: I5009b8a360bdb4a03e5a4e83430b7f2ef135115e
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-31 12:17:47 -04:00
Scott Little 673c6f811c Fix missing parenthesis in build-pkgs-serial:build_dir_srpm()
Story: 2002835
Task: 24519
Change-Id: I0c4a002873477eb8e34b9c7113533567300643b5
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-30 17:04:38 -04:00
Scott Little 12a1595941 build: Protect against aliased rm
Serial build scripts use 'rm' without leading '\' which
is used to prevent user defined aliases from interfering
with the rm command.

Also convert from use of `` to $() to run subshell commands.
This will match the coding standard used in the parallel build
scripts.

Change-Id: I903d753c9ebbf9fc2f03a43cf8b27cbb6e2ecba3
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-29 17:03:05 -04:00
Scott Little b0bcb59c15 Build: Improved logging, error handling, and other small fixes
Add function and line number to error logs.

Log git commands that are issured when using --edit.

Replace global DIR variable with a more unique variable name.
DIR is used in many scripts that get sourced, possibly overwriting
the value in the calling script.

Make sure scripts won't fail if a redundant --parallel or --serial
argurement is seen.

Source files once at top of script, rather than in multiple places.

Source build_srpm.data once per package, and handle case where
build_srpm.data file is missing.

Fix handling of '<build-cmd> --installer <pkg-name>'.

Add handling of 'BUILD_IS_BIG' and 'UILD_IS_SLOW' to serial build.

Fix handling of packages that are built twice, once with a -rt
extension, during srpm audit.

Fix some exit code handling.

Prioritize Name over Service when searching for a package.

Delete some commented out code paths.

Change-Id: Ib5153cecf7b586d68aa382d382bc5a1a03a6b326
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-29 16:31:09 -04:00
Zuul ed48913675 Merge "Slow builds due to sub-optimal build order" 2018-08-27 15:54:57 +00:00
Zuul f66ddc6f1f Merge "Add linux screen package to controllers" 2018-08-24 17:48:40 +00:00
Scott Little 58775f2a69 Kernel can no longer build in 10GB tmpfs
Problem:
   The kernel is sporadically reporting build failures due to
'no space on device' when compiled in a 10 GB tmpfs.

Solution:
   Two parts:
   1) Increase required size to 11 GB in the build_srpm.data.
   2) Modify build system to allow alocation of a 11 GB tmpfs.

Change-Id: I4e1ee60a3522c3f13cf39b3115aa6881185735ed
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-24 12:25:05 -04:00
Paul-Emile Element edca8b0ac4 Add linux screen package to controllers
This is an enhancement request to add the screen package to the system

Story: 2003061
Task: 23100

Depends-on: https://review.openstack.org/#/c/595249/
Change-Id: I355d517ba0d0392d40fe78991798ddf6e5d16fde
Signed-off-by: Paul-Emile Element <Paul-Emile.Element@windriver.com>
2018-08-22 13:12:30 -04:00
Scott Little 354ee9e9c8 Slow builds due to sub-optimal build order
Problem:
   In the absence of a dependency cache, build-pkgs has
not information on which packages should be built first.
All it can do is try to build each package in a arbitrary order.
If the build fails, it is set aside and will be retired on
the next iteration.  Builds fail when a BuildRequired package
can't be found, because it hasn't been built yet.
   This was not an issue when cgcs-tis-repo, the home of the cache,
was stored in a git.

Solution:
   Have build-pkgs invoke create_dependancy_cache.py if the
cache is not present.

Note: We only run this automatically once.  If the user is
adding packages, or modifying the BuildRequires or Requires of
an existing package, they should re-run create_dependancy_cache.py
manually.

Change-Id: Id63e42903d9c0884470a990fb62fe1bafacd1849
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-22 10:31:19 -04:00
Scott Little cbc9c29c5c Incremental parallel build failure on drbd and drbd-kernel.
Background:
drbd-kernel compiles from source directory drbd.
drbd compiles from source directory drbd-tools.

In one cleanup path the build tools incorrectly assume
package name = source directory name.

As a result "build-pkgs --clean drbd" was incorrectly deleting
a temporary directory named 'drbd' that was in fact the temporary
directory for package drbd-kernel.

For incremental parallel builds this can lead to build failures
if drbd is cleaned in paraller with drbd-kernel being built.

Change-Id: Ia0f5e9e226ce3ea0f771c2a4dc899a2b606f561f
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-21 14:57:23 -04:00
Scott Little 97b26d13ed Make sure we are in the correct group to run build-guest.
Problem:
build-guest fails for hard to determine reason.
Root cause, user was not running the command under the correct group.
They need to be in the mock group to run mock successfully.

Solution:
Verify that the command is being run under the correct group id.

Note: 'cgts' is our current alias for the 'mock' group.  Should probably
be renamed as stx-build in a future update.

Story: 2002835
Task: 24519
Change-Id: I658800cbae001f5cb0fc81bff1ed1ab159f6f6a3
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-21 11:26:59 -04:00
Scott Little b7e024664d build-rpms: drop any 'depends on self' from dependency calculations
Depends on self creates false loops and results in sub-optimal
compile orders.

Change-Id: I429b79fed58d0edea20df68a883caafbddf8a07c
Story: 2002835
Task: 24519
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-21 11:26:46 -04:00
Scott Little 0a6896a217 fix build-pkgs --edit python
Story: 2002835
Task: 24519
Change-Id: I2ab82e3a7d51328d089ef0f2291c1e875035c7a7
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-21 11:26:34 -04:00
Scott Little 97e076b8ab build-iso: prevent use of host yum.conf when processing kickstart rpms
The build host's yum.conf should not be allowed to influence the
iso we compile.

Story: 2002835
Task: 24519
Change-Id: I202ddbbe64d2dafc198fc7055e360f1c4b047bcc
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-21 11:26:21 -04:00
Scott Little 224b0f8de9 Split image.inc across git repos
Currently compiling a new package and adding it
to the iso still requires a multi-git update because
image.inc is a single centralized file in the root git.

It would be better to allow a single git update to add
a package. Too allow this, image.inc must be split across
the git repos and the build tools must be changed to
read/merge those files to arrive at the final package list.

Current scheme is to name the image.inc files using this
schema.

${distro}_${build_target}_image_${build_type}.inc

distro = centos, ...
build_target = iso, guest ...
build_type = std, rt ...

Traditionally build_type=std is omitted from config files,
so we instread use ${distro}_${build_target}_image.inc.

Story: 2003447
Task: 24649
Depends-On: Ib39b8063e7759842ba15330c68503bfe2dea6e20
Change-Id: I37c63b86a7b4e420ca5ee1cdd343f9ad78c5e36a
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-17 12:24:41 -05:00
Zuul d1b8042dae Merge "Tool changes to allow image.inc to be split across git repos." 2018-08-17 17:07:18 +00:00
Scott Little fa455c0b94 Tool changes to allow image.inc to be split across git repos.
Currently compiling a new package and adding it
to the iso still requires a multi-git update because
image.inc is a single centralized file in the root git.

It would be better to allow a single git update to add
a package. Too allow this, image.inc must be split across
the git repos and the build tools must be changed to
read/merge those files to arrive at the final package list.

Current scheme is to name the image.inc files using this
schema.

${distro}_${build_target}_image_${build_type}.inc

distro = centos, ...
build_target = iso, guest ...
build_type = std, rt ...

Traditionally build_type=std is omitted from config files,
so we instread use ${distro}_${build_target}_image.inc.

Story: 2003447
Task: 24650
Change-Id: Ib39b8063e7759842ba15330c68503bfe2dea6e20
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-17 15:00:42 +00:00
Scott Little 8744c5f598 Build hangs on macro resolution in spec file
Problem:
Hung on a spec file that contains a seemingly self referential macro ...
   Version: %{_version}

Normally 'Version: x.y.z' has the effect of setting macro %{_version}.
In effect we have 'x=x'.  Not sure how rpm handles this, but we need to
prevent a recursion in our evaluation scripts.

Solution:
1) Test for recursion in spec_evaluate() and fail rather than
entering into a recursion.

2) Record the version from the srpm file name into an environment variable.
If we fail to read the version from the spec file directly, substitute
the one from the environment variable, if defined.

Note: Tripped up on mismatched '`' during testing, so substituted
all occurances with $().  Now a good browser should be able to
highlight an future mismatches.

Story: 2002839
Task: 22778
Change-Id: Ib69f879e531d842ff007d473bd3ad34db46cabf1
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-13 13:52:35 -04:00
Scott Little f31c793761 Remove empty repo stx-utils
Directory stx will now be owned by stx-root.
Relocate .gitignore from stx-utils for that directory.

Change-Id: I75ac350600e5dcce286e6a76cf3a985d9297a2a8
Story: 2002801
Task: 22687
Depends-On: https://review.openstack.org/588634
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-03 14:14:41 -04:00
Scott Little 86d9785236 Remove package irqbalance.
Change-Id: I021cb2f5ffc81e33a5dcfacd3609b1fe4ed19187
Story: 2002801
Task: 22687
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-03 10:14:54 -04:00
Scott Little a39749ff68 Move content from stx-utils into stx-integ or stx-update
Package build-info is referenced in man build scripts.
It's relocation requires that the build scripts be modified
to reflect the new location.

from: stx/middleware/recipes-common/build-info/release-info.inc
to:   stx/stx-integ/utilities/build-info/release-info.inc

Change-Id: I82a9c12cd1e5607c1c903fc942a3c2007aca4920
Story: 2002801
Task: 22687
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-01 16:12:17 -04:00
Scott Little 81f07cc21e Remove package io-monitor.
Change-Id: Ic7596dec1127263d605ac7f396846ec7df2c0db4
Story: 2002801
Task: 22687
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-08-01 15:50:06 -04:00
Zuul d9bb660412 Merge "Add gnocchi packages to the ISO" 2018-07-31 22:23:27 +00:00
Zuul c940508223 Merge "Add docker-forward-journald to the ISO" 2018-07-31 15:50:39 +00:00
Zuul 0809b25d61 Merge "Add the helm package to the ISO" 2018-07-31 15:50:37 +00:00
Zuul 4bb214bb1d Merge "Add docker-distribution package to the ISO" 2018-07-31 15:46:43 +00:00
Zuul 9a693f55b0 Merge "Add linuxptp package to the ISO" 2018-07-31 15:44:21 +00:00
Angie Wang d91be3a0be Add gnocchi packages to the ISO
Include gnocchi packages and exclude ceilometer-api,
ceilometer-collector packages in iso.

Story: 2002825
Task: 22871
Depends-On: https://review.openstack.org/587417

Change-Id: Id7a00c3a4b91e084f1529585e37a7ab639adb483
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-31 10:19:06 -04:00
Shoaib Nasir 4600d17b21 Add docker-forward-journald to the ISO
This is used by ETCD for logging.

Story: 2002841
Task: 22784

Change-Id: If99d7b0844d3fccd4f04360d60319f689bc171f0
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-20 11:56:06 -04:00
Chris Friesen 509d0a8f94 Add the helm package to the ISO
Story: 2002876
Task: 22831

Change-Id: I8918daefc6a9aa1f3cb318b920b2119c511b8b01
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-20 11:56:01 -04:00
Jerry Sun 6c00ef3db7 Add docker-distribution package to the ISO
Story: 2002840
Task: 22781

Change-Id: I3eb5dcd5a887537a2c0b6bf7642b2c4d0f44bc4b
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-20 11:55:54 -04:00
Alex Kozyrev ba3ce75198 Add linuxptp package to the ISO
Story: 2002935
Task: 22922

Change-Id: I370cdc176b4d52263cae637bac4e77584f6ad9f3
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-20 11:55:44 -04:00
Erich Cordoba ae2085d43b Adding comps.xml and mock.proto default files.
These files are needed to setup the cgcs-centos-repo, in a first
approach both were planned to be created in the fly by the generator-
cgcs-centos-repo script, however having them in a location and
copied by the script seems to be a better solution.

Story: 2002936
Task: 23033

Change-Id: I301925434e005461fe39f4bfcbf0ee9bc936ef7c
Signed-off-by: Erich Cordoba <erich.cordoba.malibran@intel.com>
2018-07-19 22:45:06 -05:00
Scott Little ed55b629e9 Delete obsolete addons directory
All content formerly hosted under directory addons has been moved to
the 'stx' subdirectory.  It is now safe to delete the now empty
'addons' directory.

Change-Id: Iea4607dccd9b11e81766d0d2faf60af725415a4d
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-07-05 10:27:42 -04:00
Scott Little d2d96619a2 Shorten "addons/wr-cgcs/layers/cgcs" to just "stx"
Part of the project to remove cgcs references.
Replace and shorten the path the needlessly long and
complex "addons/wr-cgcs/layers/cgcs" path with just "stx".

This update just fixes up paths found in scripts, comments
and config files.

Depends-On: https://review.openstack.org/579954
Depends-On: https://review.openstack.org/579957
Depends-On: https://review.openstack.org/580170
Depends-On: https://review.openstack.org/579984
Change-Id: I04d653f740f17d8a9b2732f26d36907f635d8950
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-07-04 15:12:58 -04:00
Scott Little 61eb09cded Rename mwa-* subdirectories to match the git repo name
mwa-delphia -> stx-clients
mwa-pitta   -> stx-config
mwa-cleo    -> stx-fault
mwa-gplv2   -> stx-gplv2
mwa-gplv3   -> stx-gplv3
mwa-solon   -> stx-ha
mwa-sparta  -> stx-integ
mwa-beas    -> stx-metal
mwa-thales  -> stx-nfv
mwa-chilon  -> stx-update
mwa-perian  -> stx-upstream

1) Change build-iso and update-efiboot-image to use BSP_FILES_PATH
macro to find board support files.

2) Point BSP_FILES_PATH at stx-metal rather than mwa-beas, per the
directory renaming above.

Depends-On: https://review.openstack.org/579954
Depends-On: https://review.openstack.org/579957
Change-Id: Id8a855ab3c9674d59bb5225ce7a4d338a1e4e22a
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-07-04 13:17:17 -04:00
Zuul 111ab55bcf Merge "Support PATCHES_BASE, GIT_BASE, STX_BASE in build_srpm.data" 2018-07-04 15:29:11 +00:00
Scott Little de12eed9d1 Support PATCHES_BASE, GIT_BASE, STX_BASE in build_srpm.data
Define PATCHES_BASE, GIT_BASE and STX_BASE within the build tools,
so that the can be refereced within build_srpm.data files.

STX_BASE: Synonym for i$CGCS_BASE.
          CGCS_BASE will be obsoleted in a future update.
GIT_BASE: New, points to the root of the git that contains the package.
          This will facilitate inter-package references that are
          co-located in the same git.
PATCHES_BASE: New, same as $PKG_BASE/$DISTRO/patches

Change-Id: I0636bb38b347374fa5ffe03ea67fd9d3422e2eea
Signed-off-by: Scott Little <scott.little@windriver.com>
2018-07-03 15:15:22 -04:00
Eric MacDonald dbb21450ae Collectd+InfluxDb-RMON Replacement(ALL METRICS) P1
This update adds six new packages to the system's image include file.
These new packages are ones that are needed for build and runtime
support of the new collectd and influxdb services.
 - influxdb - the open source package.
 - python2-influxdb - the open source python API into influxdb service.
 - influxdb-extensions - influxdb integration changes and extensions in
   support of collectd sample storage.
 - collectd - the open source package.
 - puppet-collectd - the open source collectd puppet module.
 - collectd-extensions - collectd integration changes and extensions ;
   i.e. resource monitoring plugins.

Depends-On: https://review.openstack.org/579307
Change-Id: I2081d19440e3cbb12b45551aef3385c87da99a54
Signed-off-by: Jack Ding <jack.ding@windriver.com>
2018-07-03 11:02:25 -04:00
Zuul dc5abf144d Merge "Remove non-voting gate job" 2018-06-29 23:15:25 +00:00
Dean Troyer d1259788be Remove non-voting gate job
Change-Id: I13ca67cc6eaca761863a2fa336f5fd22e22158ef
2018-06-29 14:33:19 -05:00
Zuul f8b7f7c078 Merge "Added python2-coverage to image.inc" 2018-06-29 17:09:24 +00:00
Zuul b41ff9788c Merge "Add third party repo as optional from create_dependancy_cache.py" 2018-06-28 20:34:48 +00:00
Wen Shi 7e2998860d Added python2-coverage to image.inc
Change-Id: Ief49af4386bb15e9cecdc97a1cfd746ef072d33d
2018-06-28 14:10:19 -04:00
Zuul eaec5f68c8 Merge "Uprev grub2 and shim" 2018-06-27 19:59:02 +00:00
jmckenna 3a37c7feed Uprev grub2 and shim
Uprev grub and shim packages to new versions.  The packages (grub
in particullar) went through a major restructuring, including
name change in output binary packages.  This commit updates
build tools and files to be aware of new names and handle the
new packages

Change-Id: I89636218bdb8e97d39e69e764ae376b643657f50
Depends-On: https://review.openstack.org/#/c/578440
2018-06-27 13:04:02 -04:00
Zuul b3cc8b2b5b Merge "Adding Kubernetes related packages to the ISO" 2018-06-27 15:46:04 +00:00