Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CLion and IntelliJ test configurations #6856

Merged
merged 3 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 52 additions & 4 deletions .bazelci/clion.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
tasks:
CLion-OSS-oldest-stable:
name: CLion OSS Oldest Stable
CLion-Linux-OSS-oldest-stable:
name: CLion Linux OSS Oldest Stable
platform: ubuntu2204
build_flags:
- --define=ij_product=clion-oss-oldest-stable
Expand All @@ -12,8 +12,8 @@ tasks:
- --test_output=errors
test_targets:
- //:clwb_tests
CLion-OSS-latest-stable:
name: CLion OSS Latest Stable
CLion-Linux-OSS-latest-stable:
name: CLion Linux OSS Latest Stable
platform: ubuntu2204
build_flags:
- --define=ij_product=clion-oss-latest-stable
Expand All @@ -24,6 +24,54 @@ tasks:
- --test_output=errors
test_targets:
- //:clwb_tests
CLion-Windows-OSS-oldest-stable:
name: CLion Windows OSS Oldest Stable
platform: windows
build_flags:
- --define=ij_product=clion-oss-oldest-stable
build_targets:
- //clwb/...
test_flags:
- --define=ij_product=clion-oss-oldest-stable
- --test_output=errors
test_targets:
- //clwb:integration_tests
CLion-Windows-OSS-latest-stable:
name: CLion Windows OSS Latest Stable
platform: windows
build_flags:
- --define=ij_product=clion-oss-latest-stable
build_targets:
- //clwb/...
test_flags:
- --define=ij_product=clion-oss-latest-stable
- --test_output=errors
test_targets:
- //clwb:integration_tests
CLion-MacOS-OSS-oldest-stable:
name: CLion MacOS OSS Oldest Stable
platform: macos_arm64
build_flags:
- --define=ij_product=clion-oss-oldest-stable
build_targets:
- //clwb/...
test_flags:
- --define=ij_product=clion-oss-oldest-stable
- --test_output=errors
test_targets:
- //:clwb_tests
CLion-MacOS-OSS-latest-stable:
name: CLion MacOS OSS Latest Stable
platform: macos_arm64
build_flags:
- --define=ij_product=clion-oss-latest-stable
build_targets:
- //clwb/...
test_flags:
- --define=ij_product=clion-oss-latest-stable
- --test_output=errors
test_targets:
- //:clwb_tests
CLion-Linux-OSS-under-dev:
name: CLion Linux OSS Under Development
platform: ubuntu2204
Expand Down
38 changes: 0 additions & 38 deletions .bazelci/intellij-ue.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,5 @@
---
tasks:
IntelliJ-UE-internal-stable:
name: IntelliJ UE Internal Stable
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-ue-latest
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-ue-latest
- --test_output=errors
test_targets:
- //:ijwb_ue_tests
IntelliJ-UE-internal-beta:
name: IntelliJ UE Internal Beta
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-ue-beta
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-ue-beta
- --test_output=errors
test_targets:
- //:ijwb_ue_tests
IntelliJ-UE-internal-under-dev:
name: IntelliJ UE Internal Under Development
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-ue-under-dev
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-ue-under-dev
- --test_output=errors
test_targets:
- //:ijwb_ue_tests
soft_fail:
- exit_status: 1
IntelliJ-UE-OSS-oldest-stable:
name: IntelliJ UE OSS Oldest Stable
platform: ubuntu2204
Expand Down
40 changes: 1 addition & 39 deletions .bazelci/intellij.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,5 @@
---
tasks:
IntelliJ-CE-internal-stable:
name: IntelliJ CE Internal Stable
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-latest
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-latest
- --test_output=errors
test_targets:
- //:ijwb_ce_tests
IntelliJ-CE-internal-beta:
name: IntelliJ CE Internal Beta
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-beta
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-beta
- --test_output=errors
test_targets:
- //:ijwb_ce_tests
IntelliJ-CE-internal-under-dev:
name: IntelliJ CE Internal Under Development
platform: ubuntu2204
build_flags:
- --define=ij_product=intellij-under-dev
build_targets:
- //ijwb/...
test_flags:
- --define=ij_product=intellij-under-dev
- --test_output=errors
test_targets:
- //:ijwb_ce_tests
soft_fail:
- exit_status: 1
IntelliJ-CE-OSS-oldest-stable:
name: IntelliJ CE OSS Oldest Stable
platform: ubuntu2204
Expand Down Expand Up @@ -76,7 +38,7 @@ tasks:
- //:ijwb_ce_tests
soft_fail:
- exit_status: 1
IntelliJ-CE-OSS-under-dev:
IntelliJ-CE-OSS-under-dev-windows:
name: IntelliJ CE OSS Under Development
platform: windows
build_flags:
Expand Down
Loading