Skip to content

Commit 04f9a94

Browse files
authored
Merge pull request #1 from sgerrand/releases
Releases
2 parents 18d4c3c + 1c01ef6 commit 04f9a94

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ jobs:
99
- run:
1010
name: Create Docker volumes
1111
command: |
12-
docker create --name input --volume /home/builder/package alpine:3.6 /bin/true
13-
docker create --name output --volume /packages alpine:3.6 /bin/true
12+
docker create --name input --volume /home/builder/package alpine:3.7 /bin/true
13+
docker create --name output --volume /packages alpine:3.7 /bin/true
1414
docker cp ./APKBUILD input:/home/builder/package
1515
- run:
1616
name: Build packages
1717
command: |
1818
docker run --env RSA_PRIVATE_KEY="$RSA_PRIVATE_KEY" --env RSA_PRIVATE_KEY_NAME="$CIRCLE_PROJECT_USERNAME.rsa" \
19-
--volumes-from input --volumes-from output $CIRCLE_PROJECT_USERNAME/alpine-abuild:v5
19+
--volumes-from input --volumes-from output $CIRCLE_PROJECT_USERNAME/alpine-abuild:v6
2020
- run:
2121
name: Extract packages
2222
command: |
@@ -59,7 +59,7 @@ jobs:
5959
command: |
6060
ghr -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME -prerelease -delete unreleased packages
6161
ghr -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME -prerelease unreleased packages/builder/x86_64
62-
working_directory: ~/alpine-pkg-php5-redis
62+
working_directory: ~/alpine-pkg-php5-imagick
6363
release-tag:
6464
docker:
6565
- image: golang:alpine
@@ -73,7 +73,7 @@ jobs:
7373
command: |
7474
ghr -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME $CIRCLE_TAG packages
7575
ghr -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME $CIRCLE_TAG packages/builder/x86_64
76-
working_directory: ~/alpine-pkg-php5-redis
76+
working_directory: ~/alpine-pkg-php5-imagick
7777
workflows:
7878
version: 2
7979
build-test-release:

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
# alpine-pkg-php5-imagick
22

3+
[![CircleCI](https://circleci.com/gh/sgerrand/alpine-pkg-php5-imagick/tree/master.svg?style=svg)](https://circleci.com/gh/sgerrand/alpine-pkg-php5-imagick/tree/master)
4+
35
This is the [PHP5 extension for ImageMagick][php-imagick] as an Alpine Linux package.
46

57
The package provided by Alpine Linux was removed from theirrepositories in the
68
3.6 release. A package for PHP7 is still available there.
79

10+
## Releases
11+
12+
See the [releases page](https://github.com/sgerrand/alpine-pkg-php5-imagick/releases) for the latest
13+
download links.
14+
15+
## Installing
16+
17+
The current installation method for these packages is to pull them in using
18+
`wget` or `curl` and install the local file with `apk`:
19+
20+
apk --no-cache add ca-certificates wget
21+
wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://raw.githubusercontent.com/sgerrand/alpine-pkg-php5-imagick/master/sgerrand.rsa.pub
22+
wget https://github.com/sgerrand/alpine-pkg-php5-imagick/releases/download/3.4.3-r0/php5-imagick-3.4.3-r0.apk
23+
apk add php5-imagick-3.4.3-r0.apk
24+
825
[php-imagick]: https://pecl.php.net/imagick

0 commit comments

Comments
 (0)