aboutsummaryrefslogtreecommitdiff
path: root/tcwg-update-snapshots_ref.yaml
blob: 03bdfe548601fe6e2d41a6c9d11d825548bb8259 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
- job:
    name: tcwg-update-snapshots_ref
    project-type: matrix
    defaults: global
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
            linaro:
                - job-build
                - job-cancel
        - build-discarder:
            days-to-keep: 30
            num-to-keep: 30
    parameters:
        - bool:
            name: generate_abe
            default: true
            description: 'Generate ABE snapshots'
        - bool:
            name: generate_llvm
            default: true
            description: 'Generate LLVM repos'
        - bool:
            name: generate_misc
            default: true
            description: 'Generate misc file'
        - bool:
            name: update_abe_git
            default: true
            description: 'Update ABE Git repos'
        - bool:
            name: update_llvm_git
            default: true
            description: 'Update LLVM Git repos'
        - bool:
            name: verbose
            default: true
            description: 'Enable verbose output'
        - string:
            name: scripts_branch
            default: refs/remotes/origin/master
            description: 'Scripts revision to use'
        - string:
            name: abe_branch
            default: tested
            description: 'Abe revision to use'
    disabled: false
    node: tcwg-coordinator
    retry-count: 3
    display-name: 'TCWG CCC Update reference ABE snapshots on TCWG machines'
    triggers:
        - timed: '@weekly'
    scm:
        - git:
            url: https://git-us.linaro.org/toolchain/jenkins-scripts.git
            refspec: +refs/changes/*:refs/remotes/changes/*
            branches:
                - ${scripts_branch}
            skip-tag: true
            shallow-clone: true
            wipe-workspace: true
    axes:
        - axis:
            type: slave
            name: label
            values:
                - tcwg-x86_64-dev-01
    execution-strategy:
        sequential: false
    wrappers:
        - timeout:
            timeout: 60
        - timestamps
        - ssh-agent-credentials:
            # tcwg-buildslave user id
            users:
                - 'e0958a95-204f-4c14-a66c-5e2be6c5d50a'
        - build-name:
            name: '#${BUILD_NUMBER}-${GIT_REVISION,length=8}'
    builders:
        - shell: |
            #!/bin/bash

            set -e
            set -x

            . jenkins-helpers.sh

            case "$label" in
              tcwg-x86_64-dev-01)
                machines="ex40-01.tcwglab.linaro.org r1-a7.aus-colo r1-a12.aus-colo"
                nodes_list=($(print_nodes_in_labels tcwg-apm_64-build tcwg-tk1 tcwg-tx1 tcwg-x86_64-1-cam tcwg-x86_64-build tcwg-coordinator))
                for node in "${nodes_list[@]}"; do
                  machines="$machines $(print_host_for_node $node)"
                done
                ;;
              *) echo "ERROR: Unknown host: $label"; exit 1 ;;
            esac

            ./tcwg-generate-source-cache.sh --dir-abe $HOME/snapshots-ref-new --dir-llvm $HOME/llvm-reference-new --generate-abe $generate_abe --generate-llvm $generate_llvm --generate-misc $generate_misc --update-abe-git $update_abe_git --update-llvm-git $update_llvm_git --verbose $verbose --abe-branch $abe_branch
            ./tcwg-rsync-dir.sh --dir $HOME/snapshots-ref --verbose $verbose -- $machines
            ./tcwg-rsync-dir.sh --dir $HOME/llvm-reference --verbose $verbose -- $machines
    publishers:
        - email:
            recipients: tcwg@linaro.org