Code Monkey home page Code Monkey logo

meteoritt / open-build-service Goto Github PK

View Code? Open in Web Editor NEW

This project forked from opensuse/open-build-service

0.0 2.0 0.0 37.89 MB

A generic system to build and distribute packages from sources in an automatic, consistent and reproducible way. Release your software for a wide range of operating systems and hardware architectures.

Home Page: http://openbuildservice.org/

License: GNU General Public License v2.0

Makefile 0.14% Groff 0.04% Shell 2.87% Python 0.49% Lua 0.02% Ruby 47.85% JavaScript 8.32% HTML 6.86% CSS 1.35% C++ 0.03% Perl 32.03%

open-build-service's Introduction

Build Status Code Climate Coverage Status

Open Build Service

The Open Build Service (OBS) is a generic system to build and distribute binary packages from sources in an automatic, consistent and reproducible way. You can release packages as well as updates, add-ons, appliances and entire distributions for a wide range of operating systems and hardware architectures. More information can be found on openbuildservice.org.

The OBS consists of a backend and a frontend. The backend implements all the core functionality (i.e. building packages). The frontend provides a web application and XML API for interacting with the backend. Additionally there is a command line client (osc) for the API which is developed in a separate repository.

Licensing

The Open Build Service is Free Software and is released under the terms of the GPL, except where noted. Additionally, 3rd-party content (like, but not exclusively, the webui icon theme) may be released under a different license. Please check the respective files for details.

Community

You can discuss with the OBS Team via IRC on the channel #opensuse-buildservice. Or you can use our mailing list [email protected].

Contribution

If you want to contribute to the OBS please checkout our contribution readme:-)

Source Code Repository Layout

The OBS source code repository is hosted on Github and organized like this:

    dist          Files relevant for our distribution packages
    docs          Documentation, examples and schema files
    src/api       Rails app (Ruby on Rails)
    src/backend   Backend code (Perl)

Setup

There are 3 scenarios for which you can setup an OBS instance. Running it in production for your users, for development on it and for executing the test suite.

To run the OBS in production we recommend using our OBS appliance which is the whole package: a recent and stable Linux Operating System (openSUSE) bundled and pre-configured with all the server and OBS components you need to get going.

If an appliance isn’t an option for you, read on for how to setup OBS with packages or from the source code repository.

Prerequisites

The OBS needs a SQL database for persistent and a memcache daemon for volatile data.

Install/Configure the SQL Database

Here is an example on how to setup MariaDB on the openSUSE Linux Distribution. If you use another Linux distribution or another OS please refer to your manuals on how to get this running.

  1. Install the mysql package:

    zypper in mariadb
    
  2. Start the database permanently:

    systemctl enable mysql.service
    systemctl start mysql.service
    
  3. Secure the database and set a database (root) password:

    mysql_secure_installation
    

WARNING: If you use the SQL database for other services, too, then it's recommended to add a separate SQL user.

Install the Memcache Daemon

Here is an example on how to setup memcached on the openSUSE Linux Distribution. If you use another Linux distribution or another OS please refer to your manuals on how to get this running.

  1. Install the memcachd package:

    zypper in memcached
    
  2. Start the memcache daemon permanently:

    systemctl enable memcached
    systemctl start memcached
    

Install/Configure the OBS Backend

The OBS backend is not a monolithic server, it consists of multiple daemons that fulfill different tasks and is written mostly in Perl.

Setup an OBS backend for production use

We maintain an OBS package repository which provides all the necessary packages and dependencies to run an OBS backend on the SUSE Linux Enterprise or openSUSE operating systems. We highly recommend, and in fact only test these host systems, for OBS backend installations. Here is an example on how to setup the backend on the openSUSE Linux Distribution.

WARNING: The following commands start services which are accessible from the outside. Do not do this on a system connected to an untrusted network!

  1. Install the packages:

    zypper ar -f http://download.opensuse.org/repositories/OBS:/Server:/2.6/openSUSE_13.2/OBS:Server:2.6.repo
    zypper in obs-server
    
  2. Start the repository server:

    systemctl enable obsrepserver.service
    systemctl start obsrepserver.service
    
  3. Start the source server:

    systemctl enable obssrcserver.service
    systemctl start obssrcserver.service
    
  4. Start the scheduler:

    systemctl enable obsscheduler.service
    systemctl start obsscheduler.service
    
  5. Start the dispatcher:

    systemctl enable obsdispatcher.service
    systemctl start obsdispatcher.service
    
  6. Start the publisher:

    systemctl enable obspublisher.service
    systemctl start obspublisher.service
    
  7. Start one or more workers:

    systemctl enable obsworker.service
    systemctl start obsworker.service
    
  8. Start the signer in case you want to sign packages (OPTIONAL):

    systemctl enable obssigner.service
    systemctl start obssigner.service
    
  9. Start the warden in case you want to monitor workers (OPTIONAL):

    systemctl enable obswarden.service
    systemctl start obswarden.service
    
Distributed Backend

All OBS backend daemons can also be started on individual machines in your network. Especially for large scale OBS installations this is the recommended setup. You can configure all of this in the file

/usr/lib/obs/server/BSConfig.pm
Distributed Workers

To not burden your OBS backend daemons with the unpredictable load package builds can produce (think someone builds a monstrous package like LibreOffice) you should not run OBS workers on the same host as the rest of the backend daemons. Here is an example on how to setup a remote OBS worker on the openSUSE Linux Distribution.

  1. Install the worker packages:

    zypper ar -f http://download.opensuse.org/repositories/OBS:/Server:/2.6/openSUSE_13.2/OBS:Server:2.6.repo
    zypper in obs-worker
    
  2. Configure the OBS repository server address:

    In the file /etc/sysconfig/obs-server change a variable OBS_REPO_SERVERS to the hostname of the machine where the repository server is running:

    OBS_REPO_SERVERS="myreposerver.example:5252"
    
  3. Start the worker:

    systemctl enable obsworker
    systemctl start obsworker
    

Setup an OBS backend for development

Check src/backend/README how to run the backend from the source code repository.

Install/Configure the OBS Frontend

The OBS frontend is a Ruby on Rails application that collects the OBS data and serves the HTML and XML views.

Setup an OBS frontend for production use

We maintain an OBS package repository which provides all the necessary packages and dependencies to run an OBS frontend on the SUSE Linux Enterprise or openSUSE operating systems. We highly recommend, and in fact only test these host systems, for OBS frontend installations. Here is an example on how to setup the frontend on the openSUSE Linux Distribution.

  1. Install the packages:

    zypper ar -f http://download.opensuse.org/repositories/OBS:/Server:/2.6/openSUSE_13.2/OBS:Server:2.6.repo
    zypper in obs-api
    
  2. Configure the database password you have set previously:

    In /srv/www/obs/api/config/database.yml:

    production:
      adapter: mysql2
      database: api_production
      username: root
      password: YOUR_PASSWORD
      encoding: utf8
    
  3. Allow anonymous access to your API:

    In /srv/www/obs/api/config/options.yml:

    allow_anonymous: true
    read_only_hosts: [ "127.0.0.1", 'localhost' ]
    
  4. Setup the production databases:

    RAILS_ENV=production rake -f /srv/www/obs/api/Rakefile db:create
    RAILS_ENV=production rake -f /srv/www/obs/api/Rakefile db:setup
    
  5. Setup the Apache webserver:

    In the apache2 configuration file /etc/sysconfig/apache2

    append the following apache modules to the variable APACHE_MODULES:

    APACHE_MODULES="... passenger rewrite proxy proxy_http xforward headers"
    

    and enable SSL in the APACHE_SERVER_FLAGS by adding:

    APACHE_SERVER_FLAGS="-DSSL"
    

    The obs-api package comes with an apache configuration file.

    /etc/apache2/vhosts.d/obs.conf
    

    In the mod_passenger configuration file /etc/apache2/conf.d/mod_passenger.conf

    change the ruby interpreter to ruby 2.3

    PassengerRuby "/usr/bin/ruby.ruby2.3"
    
  6. Enable the xforward mode:

    In /srv/www/obs/api/config/options.yml:

    use_xforward: true
    
  7. Create a self-signed SSL certificate:

    mkdir /srv/obs/certs
    openssl genrsa -out /srv/obs/certs/server.key 1024
    openssl req -new -key /srv/obs/certs/server.key -out /srv/obs/certs/server.csr
    openssl x509 -req -days 365 -in /srv/obs/certs/server.csr -signkey /srv/obs/certs/server.key -out /srv/obs/certs/server.crt
    cat /srv/obs/certs/server.key /srv/obs/certs/server.crt > /srv/obs/certs/server.pem
    
  8. Trust this certificate on your host:

    cp /srv/obs/certs/server.pem /etc/ssl/certs/
    c_rehash /etc/ssl/certs/
    
  9. Start the web server permanently:

    systemctl enable apache2
    systemctl start apache2
    
  10. Start the OBS delayed job daemon:

    systemctl enable obsapidelayed.service
    systemctl start obsapidelayed.service
    
  11. Check out your OBS frontend:

    By default, you can see the HTML views on port 443 (e.g: https://localhost) and the repos on port 82 (once some packages are built). The default admin user is "Admin" with the password "opensuse".

Development

We are using Vagrant to create our development environments.

  1. Install Vagrant and VirtualBox. Both tools support Linux, MacOS and Windows and in principal setting up your OBS development environment works similar.

  2. Install vagrant-exec:

    vagrant plugin install vagrant-exec
    vagrant plugin install vagrant-reload
    # optional if you are running vagrant with libvirt (e.g. kvm)
    vagrant plugin install vagrant-libvirt
    
  3. Clone this code repository:

    git clone --depth 1 [email protected]:openSUSE/open-build-service.git
    
  4. Inside your clone update the backend submodule

    git submodule init
    git submodule update 
    
  5. Execute Vagrant:

    vagrant up
    
  6. Start your development backend with:

    vagrant exec RAILS_ENV=development ./script/start_test_backend
    
  7. Start your development OBS frontend:

    vagrant exec rails s
    
  8. Check out your OBS frontend: You can access the frontend at localhost:3000. Whatever you change in your cloned repository will have effect in the development environment.

  9. Changed something? Test your changes!:

    vagrant exec rake test
    
  10. Explore the development environment:

    vagrant ssh
    

Note: The vagrant instances are configured to use the test fixtures in development mode. That includes users. Default user password is 'buildservice'. The admin user is king with password 'sunflower'.

❤️ Your Open Build Service Team

open-build-service's People

Contributors

adrianschroeter avatar coolo avatar mlschroe avatar saschpe avatar digitaltom avatar bgeuken avatar hennevogel avatar spezialexperte avatar mmohring avatar marcus-h avatar chrisbr avatar cornelius avatar m0ses avatar bbrunner avatar bugfinder avatar schaefi avatar ancorgs avatar darix avatar prusnak avatar cwh42 avatar lbt avatar lrupp avatar dirkmueller avatar jblunck avatar mdeniz avatar andreas-schwab avatar gollub avatar kostyasha avatar michal42 avatar dnnx avatar

Watchers

Sergey Chudakov avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.