GitXplorerGitXplorer
b

bitbucket-pipelines

public
13 stars
4 forks
0 issues

Commits

List of commits on branch master.
Unverified
bdd6773f70654bb2c1ab4d588372440a1a442630

Merge pull request #3 from bivas/docker-service-refactor

bbivas committed 8 years ago
Unverified
7249168383d6b15d6711f47e483f0a55ed46acf0

remove unused imports

bbivas committed 8 years ago
Unverified
3d4f383d236c02857a9d74937d57b1bcbe091e1e

extract docker service from runner

bbivas committed 8 years ago
Unverified
eca1d110edea27a35fdae047717492dd8b7e001a

fault example

bbivas committed 8 years ago
Unverified
90d8ab62ffffb0b7906b18d12bfd4aafc254b730

stop running on fail command

bbivas committed 8 years ago
Unverified
150304e8fe93047e7d8e62383d2f59362b5e99d4

use go1.8 when building

bbivas committed 8 years ago

README

The README file for this repository.

BitBucket Pipelines YAML runner/parser Build Status

Runner

See Examples

Parser

Parse pipelines to Go structs.

Using the following example:

image: python:2.7
 
pipelines:
  default:
    - step:
        script:
          - python --version
          - python myScript.py

Will output the following struct:

{Image:python:2.7 Pipelines:{Default:[{Step:{Scripts:[python --version python myScript.py]}}] Branches:[] Tags:[] Bookmarks:[]}}