Compare commits
1 Commits
update-git
...
update-git
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
10218c70ee |
@@ -27,6 +27,3 @@ golangci-lint = "1.64.8" # See note about about overrides if you need to customi
|
|||||||
[settings]
|
[settings]
|
||||||
experimental = true # Required for Go binaries (e.g. pulumictl).
|
experimental = true # Required for Go binaries (e.g. pulumictl).
|
||||||
lockfile = false
|
lockfile = false
|
||||||
|
|
||||||
[plugins]
|
|
||||||
vfox-pulumi = "https://github.com/pulumi/vfox-pulumi"
|
|
||||||
|
|||||||
96
.github/workflows/build.yml
vendored
96
.github/workflows/build.yml
vendored
@@ -122,6 +122,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -211,6 +259,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
|
|||||||
96
.github/workflows/prerelease.yml
vendored
96
.github/workflows/prerelease.yml
vendored
@@ -111,6 +111,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -200,6 +248,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit ${{ matrix.language }} SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit ${{ matrix.language }} SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
|
|||||||
96
.github/workflows/release.yml
vendored
96
.github/workflows/release.yml
vendored
@@ -114,6 +114,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -203,6 +251,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
|
|||||||
9
.github/workflows/run-acceptance-tests.yml
vendored
9
.github/workflows/run-acceptance-tests.yml
vendored
@@ -143,12 +143,8 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
# This worktree check is a safeguard against someone forgetting to
|
|
||||||
# re-build and commit locally, but we handle that commit automatically in
|
|
||||||
# the case of dependency bumps.
|
|
||||||
continue-on-error: ${{ contains(github.actor, 'renovate') }}
|
|
||||||
- name: Commit SDK changes for Renovate
|
- name: Commit SDK changes for Renovate
|
||||||
if: steps.worktreeClean.outcome == 'failure' &&
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
contains(github.actor, 'renovate') && github.event_name ==
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -297,9 +293,8 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
continue-on-error: ${{ contains(github.actor, 'renovate') }}
|
|
||||||
- name: Commit SDK changes for Renovate
|
- name: Commit SDK changes for Renovate
|
||||||
if: steps.worktreeClean.outcome == 'failure' &&
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
contains(github.actor, 'renovate') && github.event_name ==
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt
|
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt
|
||||||
|
|
||||||
project_name: pulumi-docker-build
|
project_name: pulumi-docker-build
|
||||||
builds:
|
builds:
|
||||||
- id: build-provider
|
- id: build-provider
|
||||||
|
|||||||
Reference in New Issue
Block a user