github.com/billybanfield/evergreen@v0.0.0-20170525200750-eeee692790f7/config_test/project/project_test.yml (about)

     1  owner: fakeowner
     2  repo: fakerepo
     3  repokind: github
     4  branch: branch_test
     5  enabled: false
     6  stepback: true
     7  identifier: project_test
     8  
     9  ## tasks
    10  tasks:
    11  - name: compile
    12    commands:
    13    - command: shell.exec
    14      params:
    15        script: |
    16          echo "compile here"
    17  - name: testOne
    18    depends_on:
    19    - name: compile
    20    commands:
    21    - command: shell.exec
    22      params:
    23        script: |
    24          echo "testOne"
    25  
    26  buildvariants:
    27    - name: linux-64
    28      display_name: Linux-64-bit
    29      run_on:
    30      - test-distro-two
    31      expansions:
    32        push_path: linux
    33        push_bucket: downloads.mongodb.org
    34        push_name: linux
    35        push_arch: x86_64
    36        compile_flags: -j$(grep -c ^processor /proc/cpuinfo) --release
    37        test_flags: --continue-on-failure
    38      tasks:
    39      - name: compile
    40      - name: testOne