Commit 1e64ebb
committed
fix: Round 8 - Remove gzip flag from kubebuilder tar extraction
The kubebuilder test-tools download returns a tar file that is not
gzip-compressed, causing "gzip: stdin: not in gzip format" errors.
Changed tar flags from -zvxf to -xvf to let tar auto-detect the
compression format. This fixes the "Set up Kubernetes test environment"
failures in vnf-operator, cn-dms, tn, and ran-dms unit tests.
Files modified:
- .github/workflows/test.yml (line 183)
- .github/workflows/reusable/build-test.yml (line 93)
Related: #CI-fixes1 parent a3d493e commit 1e64ebb
2 files changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
90 | 90 | | |
91 | 91 | | |
92 | 92 | | |
93 | | - | |
| 93 | + | |
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
180 | 180 | | |
181 | 181 | | |
182 | 182 | | |
183 | | - | |
| 183 | + | |
184 | 184 | | |
185 | 185 | | |
186 | 186 | | |
| |||
0 commit comments