forked from Igalia/meta-webkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
88 lines (82 loc) · 2.66 KB
/
.gitlab-ci.yml
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
before_script:
- mkdir -p ~/yocto-webkit
- cd ~/yocto-webkit
- ulimit -n 4096
- repo init -u https://gitlab.com/saavedra.pablo/meta-perf-browser.git -m $MANIFEST -b nightly
- repo sync --force-sync
- pushd sources/meta-webkit
- git remote remove tmp || true
- git remote add tmp $CI_REPOSITORY_URL
- git fetch tmp
- git checkout $CI_COMMIT_SHA
- popd
- source setup-environment $SOURCE
- rm -rf tmp
zeus-wandboard-mesa-weston-wpe-2.26:
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: wandboard-mesa-wpe-2.26 wandboard-mesa browsers default mesa-wpe-2_26 --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp
zeus-wandboard-mesa-weston-wpe-2.28:
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: wandboard-mesa-wpe-2.28 wandboard-mesa browsers default mesa-wpe-2_28 --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp
zeus-wandboard-mesa-weston-wpe-trunk:
allow_failure: true
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: wandboard-mesa-wpe-trunk wandboard-mesa browsers default mesa-wpe-trunk --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp
zeus-wandboard-mesa-weston-wpe-qt:
allow_failure: true
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: wandboard-mesa-wpe-qt wandboard-mesa browsers qt5 mesa-wpe-qt --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp
zeus-rpi3-userland-wpe-2.26:
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: rpi3-userland-wpe-2.26 raspberrypi3-userland browsers default userland-wpe-2_26 --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp
zeus-rpi3-userland-wpe-2.28:
tags:
- meta-webkit
variables:
MANIFEST: manifest-zeus.xml
# setup-environment targetname machine distro bblayers presets --update-config
SOURCE: rpi3-userland-wpe-2.28 raspberrypi3-userland browsers default userland-wpe-2_28 --update-config
BITBAKE_TARGET: wpewebkit
script:
- bitbake $BITBAKE_TARGET
- rm -rf tmp