diff options
author | 2023-10-10 14:33:42 +0000 | |
---|---|---|
committer | 2023-10-10 14:33:42 +0000 | |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/skiboot/opal-ci/README | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/skiboot/opal-ci/README')
-rw-r--r-- | roms/skiboot/opal-ci/README | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/roms/skiboot/opal-ci/README b/roms/skiboot/opal-ci/README new file mode 100644 index 000000000..30bd45f9b --- /dev/null +++ b/roms/skiboot/opal-ci/README @@ -0,0 +1,36 @@ +OPAL-CI +------- + +Magic scripts for doing CI regression testing. + +Dockerfiles/build scripts for doing builds in Docker (focused on CI only, +used by Travis-ci - see .travis.yml) + + +building op-build for skiboot CI +-------------------------------- +Currently the makefile targets building op-build firmware (targeted at Mambo +simulator) for all current op-build releases. + +Since skiboot maintains compatibility, these binaries should *ALWAYS* boot +and work. + +The provided makefile to recreate the various zImage.epapr images should be +a good starting point. + +I run it like this: +cd opal-ci +export BUILDROOT_GIT=~/op-build/.git/modules/buildroot/ +export OP_BUILD_GIT=~/op-build/ +export DL_CACHE=~/op-build/dl +export SCRATCH=/scratch/stewart/op-build/ +make -j2 images + +DL_CACHE points to an existing op-build tree, so we don't have to download +all the source tarballs again + +SCRATCH is where all compilation will happen, must have >20GB free space + +BUILDROOT_GIT and OP_BUILD_GIT exist to prevent you having to clone from +github. + |