forked from bazelbuild/intellij
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4163ee
commit 44a53fa
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
build --bes_results_url=https://app.buildbuddy.io/invocation/ | ||
build --bes_backend=grpcs://cloud.buildbuddy.io | ||
# build --remote_cache=grpcs://cloud.buildbuddy.io | ||
|
||
# build --remote_download_minimal | ||
# build --remote_retries=0 | ||
# build --remote_timeout=10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
6.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Run all tests | ||
on: [push] | ||
jobs: | ||
build: | ||
name: test with ${{ matrix.ij_product }} | ||
runs-on: ubuntu-20.04 | ||
continue-on-error: ${{ matrix.experimental }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
ij_product: ['intellij-2022.1', 'intellij-2022.2', 'intellij-2022.3'] | ||
experimental: [false] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: bazel cache | ||
uses: actions/cache@v2 | ||
with: | ||
path: ~/.bazel-repository-cache | ||
key: ${{ github.ref }} | ||
restore-keys: refs/heads/master | ||
- name: run bazel | ||
continue-on-error: ${{ matrix.experimental }} | ||
run: > | ||
bazel --bazelrc=.bazelrc.remote test //:ijwb_ce_tests | ||
--repository_cache=~/.bazel-repository-cache | ||
--define=ij_product=${{ matrix.ij_product }} | ||
--keep_going | ||
--test_output=errors |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters