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

build: INFENG-942: Conditionally bypass build-react job checks #10145

Merged
merged 4 commits into from
Oct 28, 2024
Merged
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
12 changes: 10 additions & 2 deletions .circleci/real_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2090,14 +2090,21 @@ jobs:
ee:
type: boolean
default: false
force:
type: boolean
default: false
docker:
- image: cimg/node:20.9.0
resource_class: large
steps:
- checkout-with-sm
- add-and-fetch-upstream
- skip-if-only-docs
- skip-if-only-github
- when:
condition:
not: <<parameters.force>>
steps:
- skip-if-only-docs
- skip-if-only-github
- react-get-deps
- run: |
if <<parameters.dev-mode>>; then
Expand Down Expand Up @@ -5539,6 +5546,7 @@ workflows:
- build-proto:
filters: *release-and-rc-filters
- build-react:
force: true
context: determined-production
filters: *release-and-rc-filters
- build-docs:
Expand Down
Loading