Skip to content

chore: persist go build cache between CI runs on Windows #17614

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

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
terraform
  • Loading branch information
hugodutka committed May 1, 2025
commit 6db82cab75ae2338e6502ec96ddf39cebf75b2a3
6 changes: 6 additions & 0 deletions .github/actions/setup-tf/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ runs:
using: "composite"
steps:
- name: Install Terraform
if: ${{ runner.os != 'Windows' }}
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3.1.2
with:
terraform_version: 1.11.4
terraform_wrapper: false
- name: Install Terraform on Windows
if: ${{ runner.os == 'Windows' }}
shell: bash
run: |
choco install terraform --version=1.11.4 -y
8 changes: 0 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -404,14 +404,6 @@ jobs:
cache-path: "~/.cache/go-cache"
override-condition: "true"

- name: Upload test stats to Datadog
timeout-minutes: 1
continue-on-error: true
uses: ./.github/actions/upload-datadog
if: success() || failure()
with:
api-key: ${{ secrets.DATADOG_API_KEY }}

# We don't run the full test-suite for Windows & MacOS, so we just run the CLI tests on every PR.
# We run the test suite in test-go-pg, including CLI.
test-cli:
Expand Down
Loading