Changes between Version 205 and Version 206 of KDEProblems/KDEMacPortsCI/Status


Ignore:
Timestamp:
Sep 5, 2014, 6:47:19 PM (10 years ago)
Author:
mkae (Marko Käning)
Comment:

fix build directory path

Legend:

Unmodified
Added
Removed
Modified
  • KDEProblems/KDEMacPortsCI/Status

    v205 v206  
    6969{{{
    7070$ cd
    71 $ mkdir -p WC/KDECI-build;
     71$ mkdir -p WC/KDECI-builds;
    7272$ cd WC
    7373$ git clone git://anongit.kde.org/clones/websites/build-kde-org/kaning/mp-osx-ci.git
     
    102102[General]
    103103installPrefix=/opt/kde/install/%(opSys)s/%(architecture)s/%(compiler)s/
    104 $ python2.7 tools/prepare-environment.py --project qt5 --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/qt5
     104$ python2.7 tools/prepare-environment.py --project qt5 --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/qt5
    105105...
    106106$
     
    130130   Port 2022
    131131$ ssh-keygen -C YOUR@EMAIL.ADDRESS       # <-- send your public SSH key to Ben Cooksley in order to get access to the build server
    132 $ python2.7 tools/perform-build.py --project qt5 --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/qt5
     132$ python2.7 tools/perform-build.py --project qt5 --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/qt5
    133133...
    134134}}}
     
    154154The various projects on the CI system have to be handled by replacing "PROJECT" with the project name of the corresponding framework or application:
    155155{{{
    156 $ python2.7 tools/prepare-environment.py --project PROJECT --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/PROJECT
    157 ...
    158 $ (cd ~/WC/KDECI-build/PROJECT; git checkout jenkins)
    159 ...
    160 $ python2.7 tools/perform-build.py --project PROJECT --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/PROJECT
     156$ python2.7 tools/prepare-environment.py --project PROJECT --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/PROJECT
     157...
     158$ (cd ~/WC/KDECI-builds/PROJECT; git checkout jenkins)
     159...
     160$ python2.7 tools/perform-build.py --project PROJECT --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/PROJECT
    161161...
    162162}}}
     
    179179Cmake needs a '''manual''' checkout of its sources (which is demonstrated here the explicit way again):
    180180{{{
    181 $ python2.7 tools/prepare-environment.py --project cmake --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/cmake
    182 ...
    183 $ git clone git://cmake.org/cmake.git ~/WC/KDECI-build/cmake
    184 $ python2.7 tools/perform-build.py --project cmake --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-build/cmake
     181$ python2.7 tools/prepare-environment.py --project cmake --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/cmake
     182...
     183$ git clone git://cmake.org/cmake.git ~/WC/KDECI-builds/cmake
     184$ python2.7 tools/perform-build.py --project cmake --branchGroup kf5-qt5 --platform darwin-mavericks --sources ~/WC/KDECI-builds/cmake
    185185...
    186186$