-
Notifications
You must be signed in to change notification settings - Fork 265
/
Copy pathbuild-extension.yml
45 lines (45 loc) · 1.57 KB
/
build-extension.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
- name: "build-php-%phpVersion%"
tags: ["build", "php%phpVersion%", "stable", "pr", "tag"]
commands:
- func: "locate PHP binaries"
vars:
PHP_VERSION: "%phpVersion%"
- func: "compile extension"
# TODO: remove once 2.0.0 is released
vars:
# TODO: replace with "v2.x" once mongodb/mongo-php-driver#1790 is merged
# EXTENSION_BRANCH: "v2.x"
EXTENSION_REPO: "https://github.com/jmikola/mongo-php-driver.git"
EXTENSION_BRANCH: "2.x-bulkwrite"
- func: "upload extension"
# TODO: re-enable once 2.0.0 is released
# - name: "build-php-%phpVersion%-lowest"
# tags: ["build", "php%phpVersion%", "lowest", "pr", "tag"]
# commands:
# - func: "locate PHP binaries"
# vars:
# PHP_VERSION: "%phpVersion%"
# - func: "compile extension"
# vars:
# EXTENSION_VERSION: "2.0.0"
# - func: "upload extension"
# - name: "build-php-%phpVersion%-next-stable"
# tags: ["build", "php%phpVersion%", "next-stable", "pr", "tag"]
# commands:
# - func: "locate PHP binaries"
# vars:
# PHP_VERSION: "%phpVersion%"
# - func: "compile extension"
# vars:
# EXTENSION_BRANCH: "v2.0"
# - func: "upload extension"
# - name: "build-php-%phpVersion%-next-minor"
# tags: ["build", "php%phpVersion%", "next-minor"]
# commands:
# - func: "locate PHP binaries"
# vars:
# PHP_VERSION: "%phpVersion%"
# - func: "compile extension"
# vars:
# EXTENSION_BRANCH: "v2.x"
# - func: "upload extension"