Skip to content

Commit 598d587

Browse files
lizandavido
authored andcommitted
Bazel 0.22.0
Signed-off-by: Lizan Zhou <[email protected]>
1 parent 79b8149 commit 598d587

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

APKBUILD

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: David Ostrovsky <[email protected]>
22

33
pkgname=bazel
4-
pkgver=0.21.0
4+
pkgver=0.22.0
55
pkgrel=0
66
pkgdesc='Correct, reproducible, and fast builds for everyone'
77
arch="all"
@@ -12,12 +12,12 @@ depends="bash openjdk8 libarchive zip unzip"
1212
# Patch bazel: https://github.com/bazelbuild/bazel/issues/4055
1313
# https://bugs.alpinelinux.org/issues/8121
1414
makedepends="coreutils git linux-headers protobuf python"
15-
options="!distcc !strip"
15+
options="!distcc !strip !check"
1616
source="https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip
1717
https://github.com/bazelbuild/bazel/releases/download/${pkgver}/bazel-${pkgver}-dist.zip.sig"
1818

19-
sha512sums="96489dac0b0daf84c8711e5e11dc7d810c3a1f037e567bc5f3d5a3fb20d8eeeb512238ca9cace1c7f8b570687c43269abb037fb42a4c4b97392e0af7d45bb653 bazel-0.21.0-dist.zip
20-
8ee33051a40f46873bcf85d8c80389cf00c59818ba8893117be87e25d7413f4c6b6eddf08d53bdcb33d31616f43d64a80c472d0c91a0783fe79c8020a3d40d45 bazel-0.21.0-dist.zip.sig"
19+
sha512sums="b93cd21f0f164c118b90efba761a9492eb9894e24f13ff468defd12b86c7e67f16e51060ac2fc4c2f8dbf51b1c833d41b255fdd8107988e5babf093cfc5b3254 bazel-0.22.0-dist.zip
20+
65cedf12b5650ca0708b4fadeeefee1f3f680d6f09ba1e3ffe2e3d42855e558712feacb3f99566902d9f94b5ed0b763e3cc0b13dfd6ffb7046e73468d003faca bazel-0.22.0-dist.zip.sig"
2121

2222
build() {
2323
export JAVA_HOME=/usr/lib/jvm/default-jvm

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
# bazel-alpine-package
22

3-
This is the Bazel 0.21.0 as a Alpine Linux package.
3+
This is the Bazel 0.22.0 as a Alpine Linux package.
44

55
## Installing
66

77
The current installation method for these packages is to pull them in using `wget` or `curl` and install the local file with `apk`:
88

99
apk --no-cache add ca-certificates wget
1010
wget -q -O /etc/apk/keys/[email protected] https://raw.githubusercontent.com/davido/bazel-alpine-package/master/[email protected]
11-
wget https://github.com/davido/bazel-alpine-package/releases/download/0.21.0/bazel-0.21.0-r0.apk
12-
apk add bazel-0.21.0-r0.apk
11+
wget https://github.com/davido/bazel-alpine-package/releases/download/0.22.0/bazel-0.22.0-r0.apk
12+
apk add bazel-0.22.0-r0.apk
1313

1414
## Usage inside a Dockerfile
1515

1616
ADD https://raw.githubusercontent.com/davido/bazel-alpine-package/master/[email protected] \
1717
/etc/apk/keys/[email protected]
18-
ADD https://github.com/davido/bazel-alpine-package/releases/download/0.21.0/bazel-0.21.0-r0.apk \
19-
/tmp/bazel-0.21.0-r0.apk
20-
RUN apk add /tmp/bazel-0.21.0-r0.apk
18+
ADD https://github.com/davido/bazel-alpine-package/releases/download/0.22.0/bazel-0.22.0-r0.apk \
19+
/tmp/bazel-0.22.0-r0.apk
20+
RUN apk add /tmp/bazel-0.22.0-r0.apk

0 commit comments

Comments
 (0)