Skip to content

Commit bd9677c

Browse files
committed
terraform
1 parent 9c808b4 commit bd9677c

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.github/actions/setup-tf/action.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ runs:
55
using: "composite"
66
steps:
77
- name: Install Terraform
8+
if: ${{ runner.os }} != 'Windows'
89
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
910
with:
1011
terraform_version: 1.11.4
1112
terraform_wrapper: false
13+
- name: Install Terraform on Windows
14+
if: ${{ runner.os }} == 'Windows'
15+
shell: bash
16+
run: |
17+
choco install terraform --version=1.11.4 -y

.github/workflows/ci.yaml

-8
Original file line numberDiff line numberDiff line change
@@ -404,14 +404,6 @@ jobs:
404404
cache-path: "~/.cache/go-cache"
405405
override-condition: "true"
406406

407-
- name: Upload test stats to Datadog
408-
timeout-minutes: 1
409-
continue-on-error: true
410-
uses: ./.github/actions/upload-datadog
411-
if: success() || failure()
412-
with:
413-
api-key: ${{ secrets.DATADOG_API_KEY }}
414-
415407
# We don't run the full test-suite for Windows & MacOS, so we just run the CLI tests on every PR.
416408
# We run the test suite in test-go-pg, including CLI.
417409
test-cli:

0 commit comments

Comments
 (0)