Skip to content
Draft
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
16 changes: 16 additions & 0 deletions .github/workflows/run-acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,22 @@ jobs:
with:
version: ${{ needs.prerequisites.outputs.version }}

# TEMPORARY (pre-merge test): ref pinned to the PR branch.
compare_sdk:
if: github.event_name == 'repository_dispatch' ||
github.event.pull_request.head.repo.full_name == github.repository
name: compare_sdk
needs: prerequisites
uses: pulumi/ci-mgmt/.github/workflows/compare_sdk.yml@pose/chores/compare-sdk-ci-workflow-2282
permissions:
contents: read
with:
version: ${{ needs.prerequisites.outputs.version }}
languages: '["nodejs","python","dotnet","go","java"]'
runs-on: ubuntu-latest
mise-version: 2026.3.7
checkout-submodules: 'false'

comment-notification:
if: github.event_name == 'repository_dispatch'
name: comment-notification
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,13 @@ build_python: .make/build_python
@touch $@
.PHONY: generate_python build_python

# TEMPORARY (pre-merge test): shadow-gen diff target. Refs pinned to the PR
# branch so the not-yet-merged compare-sdk command resolves. See pulumi/ci-mgmt#2300.
compare_sdks: compare_sdk_nodejs compare_sdk_python compare_sdk_dotnet compare_sdk_go compare_sdk_java
compare_sdk_%: .make/mise_install bin/$(CODEGEN) .make/schema | mise_env
GOPROXY=direct GOSUMDB=off go run github.com/pulumi/ci-mgmt/provider-ci@216aafe9c4758833f6d551549de870073ee4799f compare-sdk --language $*
.PHONY: compare_sdks

clean:
rm -rf sdk/{dotnet,nodejs,go,python}
rm -rf bin/*
Expand Down
Loading