Skip to content

Commit

Permalink
🧱 Add clang integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tiulpin committed May 14, 2024
1 parent 3c1919b commit 85272e3
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: 'node'
on:
workflow_dispatch:

pull_request:
paths-ignore:
- 'orb/**'
Expand Down Expand Up @@ -104,11 +105,23 @@ jobs:
matrix:
os: [ubuntu-latest]
directory: [
'tests/dotnet', 'tests/duplicates', 'tests/go', 'tests/java', 'tests/js', 'tests/py_error'
'tests/cpp', 'tests/dotnet', 'tests/duplicates', 'tests/go', 'tests/java', 'tests/js', 'tests/py_error'
]
arguments: ['']
pr: [ 'true', 'false' ]
include:
- directory: 'tests/dotnet'
arguments: '--ide,QDNET'
os: 'windows-latest'
pr: 'false'
- directory: 'tests/dotnet'
arguments: '--ide,QDNET'
os: 'windows-latest'
pr: 'true'
- directory: 'tests/dotnet'
os: 'ubuntu-latest'
arguments: '-l,jetbrains/qodana-cdnet:2024.1-eap'
pr: 'false' # TODO: add true when pr-mode is available for dotnet-community
- directory: 'tests/java'
arguments: '-l,jetbrains/qodana-jvm-community'
os: 'ubuntu-latest'
Expand All @@ -133,18 +146,11 @@ jobs:
arguments: '-l,jetbrains/qodana-python-community'
os: 'ubuntu-latest'
pr: 'false'
- directory: 'tests/dotnet'
arguments: '--ide,QDNET'
os: 'windows-latest'
pr: 'false'
- directory: 'tests/dotnet'
arguments: '--ide,QDNET'
os: 'windows-latest'
pr: 'true'
- directory: 'tests/dotnet'
exclude: # TODO: remove this block when pr-mode is available for clang
- directory: 'tests/cpp'
arguments: ''
os: 'ubuntu-latest'
arguments: '-l,jetbrains/qodana-cdnet:2024.1-eap'
pr: 'false' # TODO: set to true
pr: 'true'
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -182,6 +188,9 @@ jobs:
env:
QODANA_TOKEN: ${{ secrets.QODANA_PROJECT_TESTS_TOKEN }}
QODANA_PR_SHA: ${{ env.QODANA_PR_SHA }}
- name: Show logs
continue-on-error: true
run: cat ${{ runner.temp }}/qodana/results/log/idea.log

azure-dev-release:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 85272e3

Please sign in to comment.