Skip to content

Commit 2dfbf64

Browse files
authored
Prepare release 0.3.0 (#30)
* Prepare release 0.3.0 * Removed debug code * Added link to docker hub * Change order in Travis to optimize total build time
1 parent 70ef372 commit 2dfbf64

File tree

4 files changed

+43
-6
lines changed

4 files changed

+43
-6
lines changed

.github/workflows/deploy-docker.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424
fi
2525
echo ::set-output name=VERSION::$REF
2626
27-
- name: Publish
28-
env:
29-
DOCKER_TAG: ${{ steps.get_version.outputs.VERSION }}
30-
run: echo $DOCKER_TAG
31-
3227
- name: Docker login
3328
run: echo '${{ secrets.DOCKER_PASSWORD }}' | docker login --username ${{ secrets.DOCKER_USERNAME }} --password-stdin
3429

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ services:
88
- docker
99

1010
env:
11+
# Use Memcached first because it is really slow
12+
- LAYER=memcached PHP="72 73 74"
13+
# All layers in alphabetical order
1114
- LAYER=amqp PHP="72 73 74"
1215
- LAYER=blackfire PHP="72 73 74"
1316
- LAYER=gmp PHP="72 73 74"
1417
- LAYER=mailparse PHP="72 73 74"
15-
- LAYER=memcached PHP="72 73 74"
1618
- LAYER=pcov PHP="72 73 74"
1719
- LAYER=pgsql PHP="72 73 74"
1820
- LAYER=xdebug PHP="72 73 74"

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Change log
2+
3+
## 0.3.0
4+
5+
### Added
6+
7+
- Support for Mailparse
8+
- Support for pcov
9+
10+
### Changed
11+
12+
- Publishing docker images for each layer
13+
- Use AsyncAws internally to maintain images
14+
15+
## 0.2.1
16+
17+
### Added
18+
19+
- Support for pgsql
20+
21+
## 0.2.0
22+
23+
### Added
24+
25+
- Support for Memcahced
26+
- Support for Memcahce
27+
- Support for GMP
28+
29+
## 0.1.0
30+
31+
First release

Readme.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,15 @@ to make sure you are listening to `tcp://0.0.0.0:8307`.
7777
This [blog post](https://developer.happyr.com/installing-blackfire-multiple-servers)
7878
could be helpful as it describes how to install the Blackfire Agent.
7979

80+
## Docker images
81+
82+
There are Docker images for every layer. They are updated on every push to master
83+
and on every tag. The name of the image is `bref/extra-[name]-php-[version]`. Find
84+
all images on [Docker hub](https://hub.docker.com/u/bref).
85+
86+
These are the same docker images that creates the layers. All layer files lives inside
87+
the `/opt` directory in the image.
88+
8089
## For contributors and maintainers
8190

8291
### Creating a new layer

0 commit comments

Comments
 (0)