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 Feb 20, 2025
1 parent 8adbcae commit 1febf70
Showing 1 changed file with 28 additions and 0 deletions.
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-2024.3', 'intellij-2025.1']
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 test //:ijwb_ce_tests
--repository_cache=~/.bazel-repository-cache
--define=ij_product=${{ matrix.ij_product }}
--keep_going
--test_output=errors

0 comments on commit 1febf70

Please sign in to comment.