Skip to content

Commit 0aa0047

Browse files
committed
Use new CircleCI image
1 parent 2907f55 commit 0aa0047

File tree

5 files changed

+28
-2
lines changed

5 files changed

+28
-2
lines changed

.circleci/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN apt-get update && apt-get upgrade
9292

9393
RUN apt-get install -y openjdk-11-jdk python2.7 python3 golang-go
9494

95-
RUN curl -L -o /usr/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.3.0/bazelisk-linux-amd64 \
95+
RUN curl -L -o /usr/bin/bazel https://github.com/bazelbuild/bazelisk/releases/download/v1.12.0/bazelisk-linux-amd64 \
9696
&& sudo chmod +x /usr/bin/bazel
9797

9898
RUN cd /usr/bin && ln -s python3 python

.circleci/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## `build.sh`
2+
3+
Anytime you change the Ruby version you must push a new image to Docker Hub.
4+
5+
Email [email protected] to be added to bazelruby org on hub.docker.com.
6+
7+
### To Upgrade
8+
9+
Change the ruby version in the `Dockerfile` and run:
10+
11+
```bash
12+
cd .circleci
13+
./build.sh
14+
```

.circleci/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ echo
1212

1313
set -x
1414

15-
docker build . -t bazelruby/ruby-$RUBY_VERSION
15+
docker build --platform linux/x86_64 . -t bazelruby/ruby-$RUBY_VERSION
1616

1717
docker push bazelruby/ruby-$RUBY_VERSION
1818

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [Unreleased](https://github.com/bazelruby/rules_ruby/tree/HEAD)
4+
5+
[Full Changelog](https://github.com/bazelruby/rules_ruby/compare/v0.6.0...HEAD)
6+
7+
**Merged pull requests:**
8+
9+
- Bump nokogiri from 1.13.3 to 1.13.4 in /examples/simple\_rails\_api [\#130](https://github.com/bazelruby/rules_ruby/pull/130) ([dependabot[bot]](https://github.com/apps/dependabot))
10+
- Bump puma from 4.3.11 to 4.3.12 in /examples/simple\_rails\_api [\#126](https://github.com/bazelruby/rules_ruby/pull/126) ([dependabot[bot]](https://github.com/apps/dependabot))
11+
- Add SDK versions: 2.6.9,2.7.5,3.0.3,3.1.0,3.1.0 [\#123](https://github.com/bazelruby/rules_ruby/pull/123) ([matsubara0507](https://github.com/matsubara0507))
12+
- Bump nokogiri from 1.12.5 to 1.13.3 in /examples/simple\_rails\_api [\#122](https://github.com/bazelruby/rules_ruby/pull/122) ([dependabot[bot]](https://github.com/apps/dependabot))
13+
- Bump puma from 4.3.9 to 4.3.11 in /examples/simple\_rails\_api [\#121](https://github.com/bazelruby/rules_ruby/pull/121) ([dependabot[bot]](https://github.com/apps/dependabot))
14+
315
## [v0.6.0](https://github.com/bazelruby/rules_ruby/tree/v0.6.0) (2021-11-09)
416

517
[Full Changelog](https://github.com/bazelruby/rules_ruby/compare/v0.5.2...v0.6.0)

README.pdf

766 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)