-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
feat(core): error when running atomized tasks outside of DTE #26898
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
☁️ Nx Cloud ReportCI is running/has finished running commands for commit d6a791a. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 6 targets
Sent with 💌 from NxCloud. |
322a99c
to
db7724c
Compare
db7724c
to
0693e21
Compare
This comment was marked as outdated.
This comment was marked as outdated.
73bfe19
to
2a768a5
Compare
2a768a5
to
0eb2f2e
Compare
92aadf0
to
f8b3759
Compare
f8b3759
to
f974505
Compare
f974505
to
984dfaf
Compare
This comment was marked as outdated.
This comment was marked as outdated.
984dfaf
to
7e6ad73
Compare
7e6ad73
to
a35cd85
Compare
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
bf1fe0e
to
37d7ab9
Compare
37d7ab9
to
fe80faf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking good! 👍 Few more changes and we should be good to go.
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior Nx allows running atomized tasks (like `e2e-ci`) anywhere. ## Expected Behavior Nx allows running atomized tasks (like `e2e-ci`) only in distributed environments like Nx Agents or DTE. We'll leave that actual check to nx cloud but in the default runner, we'll throw an error. It's possible to escape from this with an env var. (cherry picked from commit 184e83a)
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
Nx allows running atomized tasks (like
e2e-ci
) anywhere.Expected Behavior
Nx allows running atomized tasks (like
e2e-ci
) only in distributed environments like Nx Agents or DTE. We'll leave that actual check to nx cloud but in the default runner, we'll throw an error.It's possible to escape from this with an env var.