Skip to content

Bump v1.0.0 compatibility test to v1.1.0 #882

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,22 +48,22 @@ jobs:
<<: *linux
env: TEST_SCRIPT=test_lint
# Test
- <<: *linux
env: TEST_SCRIPT=test_rules_scala BAZEL_VERSION=1.0.0
- <<: *linux
env: TEST_SCRIPT=test_rules_scala
- <<: *linux
env: TEST_SCRIPT=test_reproducibility BAZEL_VERSION=1.0.0
env: TEST_SCRIPT=test_rules_scala BAZEL_VERSION=1.1.0
- <<: *linux
env: TEST_SCRIPT=test_reproducibility
- <<: *linux
env: TEST_SCRIPT=test_reproducibility BAZEL_VERSION=1.1.0
- <<: *osx
env: TEST_SCRIPT=test_rules_scala
- <<: *osx
env: TEST_SCRIPT=test_rules_scala BAZEL_VERSION=1.0.0
- <<: *osx
env: TEST_SCRIPT=test_reproducibility BAZEL_VERSION=1.0.0
env: TEST_SCRIPT=test_rules_scala BAZEL_VERSION=1.1.0
- <<: *osx
env: TEST_SCRIPT=test_reproducibility
- <<: *osx
env: TEST_SCRIPT=test_reproducibility BAZEL_VERSION=1.1.0

before_install:
- |
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This project defines core build rules for [Scala](https://www.scala-lang.org/) t
## Getting started

1. [Install Bazel](https://docs.bazel.build/versions/master/install.html), see the [compatibility table](#bazel-compatible-versions).
2. Add the following to your `WORKSPACE` file and update the `githash` if needed:
2. Add the following to your `WORKSPACE` file and update the `githash` if needed:

```python
rules_scala_version="69d3c5b5d9b51537231746e93b4383384c9ebcf4" # update this as needed
Expand Down Expand Up @@ -108,7 +108,7 @@ for an example workspace using another scala version.

| bazel | rules_scala gitsha |
|--------|--------------------|
| 1.0.0 | HEAD |
| 1.1.0 | HEAD |
| 0.28.0 | HEAD |
| 0.23.x | ca655e5a330cbf1d66ce1d9baa63522752ec6011 | |
| 0.22.x | f3113fb6e9e35cb8f441d2305542026d98afc0a2 |
Expand Down
6 changes: 3 additions & 3 deletions tools/bazel
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ case "$bazel_version" in
darwin_sha='5d50ae13ba01a224ddf54cfd818289bee5b38e551cca22bffc79b89f377d2095'
linux_sha='a2a7e4cb38d7bc774a5bbfab4d45293f5f2158eb6caf0128792cc1148732a4e6'
;;
'1.0.0')
darwin_sha='fdab79e3a89e979b63487fd268761aac17a6ca4c8a41830743978c46d2160ff9'
linux_sha='f8490463360fff5992b5a5af93f930ff984588765f9ccf3e7dd03db5145fbf0f'
'1.1.0')
darwin_sha='1a552f4ce194860fbbd50eeb319f81788ddf50a849e92378eec72231cc64ef65'
linux_sha='14301099c87568db302d59a5d3585f5eb8a6250ac2c6bb0367c56e623ff6e65f'
;;
*)
echo "The requested Bazel version '$bazel_version' is not supported"
Expand Down