Skip to content

Commit

Permalink
Wix Build setup
Browse files Browse the repository at this point in the history
  • Loading branch information
liucijus authored and WixBuildServer committed Dec 28, 2023
1 parent 63ce9cd commit 61f2378
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .bazelrc.remote
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
28 changes: 28 additions & 0 deletions .github/workflows/continuous-integration-workflow.yml
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.3', 'intellij-2023.1', 'intellij-2023.2', 'intellij-2023.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

0 comments on commit 61f2378

Please sign in to comment.