snowpatch 0.2.0

continuous integration for patch-based workflows
#
# snowpatch - continuous integration for patch-based workflows
#
# Copyright (C) 2016 IBM Corporation
# Authors:
#     Russell Currey <ruscur@russell.cc>
#     Andrew Donnellan <andrew.donnellan@au1.ibm.com>
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
#
# openpower.toml - example configuration file
#

[git]
user = "git"
public_key = "/home/ruscur/.ssh/id_rsa.pub"
private_key = "/home/ruscur/.ssh/id_rsa"

[patchwork]
url = "https://russell.cc/patchwork"
port = 443 # optional
user = "ruscur" # optional, needed for pushing results
pass = "banana" # optional, needed for pushing results
polling_interval = 10 # polling interval in minutes

[jenkins]
url = "https://jenkins.ozlabs.ibm.com"
port = 443
username = "patchwork"
token = "33333333333333333333333333333333"

[projects]

    # the name of the project must be as is in patchwork
    [projects.skiboot]
    repository = "/home/ruscur/Documents/skiboot"
    branches = ["master", "stable"] # branches to base from
    test_all_branches = false
    remote_name = "github"
    remote_uri = "git@github.com:ruscur/skiboot.git"
    push_results = false

        [[projects.skiboot.jobs]]
        job = "skiboot-compile-test-snowpatch"
        remote = "GIT_REPO"
        branch = "GIT_REF"

        [[projects.skiboot.jobs]]
        job = "skiboot-boot-test-snowpatch"
        remote = "GIT_REPO"
        branch = "GIT_REF"
        artifact = "snowpatch.txt"

    [projects.linuxppc-dev]
    repository = "/home/ruscur/Documents/linux"
    branches = ["master", "powerpc-next"]
    # test_all_branches defaults to true
    remote_name = "github"
    remote_uri = "git@github.com:ruscur/linux.git"
    push_results = false

        [[projects.linuxppc-dev.jobs]]
        job = "linux-build-manual"
        remote = "GIT_REPO"
        branch = "GIT_REF"
        artifact = "snowpatch.txt"
        hefty = true
        DEFCONFIG_TO_USE = "pseries_le_defconfig"

        [[projects.linuxppc-dev.jobs]]
        job = "linux-build-manual"
        remote = "GIT_REPO"
        branch = "GIT_REF"
        artifact = "snowpatch.txt"
        hefty = false
        DEFCONFIG_TO_USE = "ppc64le_defconfig"