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
30 changes: 30 additions & 0 deletions .github/workflows/compare-sdk-trial.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# TEMPORARY pre-merge trial of the centralized compare_sdk workflow (pulumi/ci-mgmt#2300).
# Runs only prerequisites + compare_sdk; run-acceptance-tests is removed in this branch.
name: compare-sdk-trial
on:
pull_request: {}
permissions:
contents: read
jobs:
prerequisites:
permissions:
contents: read
pull-requests: write
id-token: write
uses: ./.github/workflows/prerequisites.yml
secrets: inherit
with:
default_branch: ${{ github.event.pull_request.base.ref }}
is_pr: true
is_automated: false
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'
297 changes: 0 additions & 297 deletions .github/workflows/run-acceptance-tests.yml

This file was deleted.

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 trial): shadow-gen diff target, refs pinned to the
# ci-mgmt PR stack. 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