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

chore: disable azure testing in pipeline #7186

Merged
merged 1 commit into from
Sep 30, 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
4 changes: 2 additions & 2 deletions .github/workflows/sdk-spec-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ jobs:
if [ "${{env.TARGET}}" = "all" ]; then
target='["tf-aws", "tf-azure", "tf-gcp"]'
elif [ "${{env.TARGET}}" = "all-stable" ]; then
target='["tf-aws", "sim", "tf-azure"]'
target='["tf-aws", "sim"]'
elif [ "${{env.TARGET}}" = "all-unstable" ]; then
target='["tf-gcp"]'
target='["tf-gcp", "tf-azure"]'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it will actually still run them, but after building and publishing

else
target='["${{env.TARGET}}"]'
fi
Expand Down