Skip to content

Commit 876fe80

Browse files
liucijusWixBuildServer
authored andcommitted
Wix Build setup
1 parent 035fee0 commit 876fe80

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Run all tests
2+
on: [push]
3+
jobs:
4+
build:
5+
name: test with ${{ matrix.ij_product }}
6+
runs-on: ubuntu-24.04
7+
continue-on-error: ${{ matrix.experimental }}
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
ij_product: ['intellij-2024.3', 'intellij-2025.1']
12+
experimental: [false]
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: bazel cache
16+
uses: actions/cache@v4
17+
with:
18+
path: ~/.bazel-repository-cache
19+
key: ${{ github.ref }}
20+
restore-keys: refs/heads/master
21+
- name: bazel test
22+
continue-on-error: ${{ matrix.experimental }}
23+
run: >
24+
bazel test //:ijwb_ce_tests
25+
--repository_cache=~/.bazel-repository-cache
26+
--define=ij_product=${{ matrix.ij_product }}
27+
--keep_going
28+
--test_output=errors

0 commit comments

Comments
 (0)