Skip to content
This repository was archived by the owner on Jun 15, 2026. It is now read-only.

Commit 1a991d3

Browse files
authored
Update cd-pr.yml
1 parent 6d98bbb commit 1a991d3

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/cd-pr.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,25 @@ jobs:
7979
bash /tmp/tlstest.sh &
8080
wait $!
8181
82+
- name: Check system resources
83+
run: |
84+
echo "--- Memory ---"
85+
free -h
86+
echo "--- Ulimits ---"
87+
ulimit -a
88+
echo "--- OOM kills ---"
89+
sudo dmesg | grep -i "killed process\|oom" | tail -20
90+
91+
- name: Test provider binary directly
92+
working-directory: terraform-stg
93+
run: |
94+
PROVIDER=".terraform/providers/registry.terraform.io/hashicorp/kubernetes/2.38.0/linux_amd64/terraform-provider-kubernetes_v2.38.0_x5"
95+
echo "--- Provider binary info ---"
96+
ls -lh $PROVIDER
97+
file $PROVIDER
98+
echo "--- Run provider directly ---"
99+
timeout 5 $PROVIDER --help 2>&1 || true
100+
82101
- name: Terraform Plan
83102
id: check-changes
84103
working-directory: terraform-stg

0 commit comments

Comments
 (0)