forked from RandyMcMillan/pages-gem
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
57 lines (51 loc) · 1.58 KB
/
.travis.yml
File metadata and controls
57 lines (51 loc) · 1.58 KB
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
_clones: &clones
before_install:
- git clone https://github.com/bitcoin-dot-org/Bitcoin.org
- git clone https://github.com/bitcoin-dot-org/developer.bitcoin.org
- git clone https://github.com/bitcoin-core/bitcoincore.org
_shared_job: &shared_job
language: ruby
allow_failures:
rvm:
- 2.5
- 2.6
install:
- echo "shared install config"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- BITCOIN_ORG=https://github.com/bitcoin-dot-org/Bitcoin.org
- DEVELOPER_BITCOIN_ORG=https://github.com/bitcoin-dot-org/developer.bitcoin.org
- BITCCOINCORE_ORG=https://github.com/bitcoin-core/bitcoincore.org
branches:
only:
- master
notifications:
email:
- admin@bitcoincore.dev
cache: bundler
jobs:
include:
- name: cibuild-org-builder
<<: *shared_job
after_install:
- echo "shared after_install config"
script: "script/cibuild-org-builder $(pwd) image"
- name: cibuild-bitcoin-org
<<: *clones
<<: *shared_job
after_install:
- echo "shared after_install config"
script: "script/cibuild-org-builder $(pwd)/Bitcoin.org image"
- name: cibuild-developer-bitcoin-org
<<: *clones
<<: *shared_job
after_install:
- echo "shared after_install config"
script: "script/cibuild-org-builder $(pwd)/developer.bitcoin.org image"
- name: cibuild-bitcoincore-org
<<: *clones
<<: *shared_job
after_install:
- echo "shared after_install config"
script: "script/cibuild-org-builder $(pwd)/bitcoincore.org image"