diff --git a/.github/workflows/containers-pull.yaml b/.github/workflows/containers-pull.yaml index 6a22b87e..bf383680 100644 --- a/.github/workflows/containers-pull.yaml +++ b/.github/workflows/containers-pull.yaml @@ -22,7 +22,9 @@ jobs: run: npm install --include=dev working-directory: containers - name: Test - run: wing test + run: |- + #!/bin/sh + DEBUG=1 wing test working-directory: containers env: DEBUG: 1 diff --git a/.github/workflows/containers-release.yaml b/.github/workflows/containers-release.yaml index 43164dc6..4d60668d 100644 --- a/.github/workflows/containers-release.yaml +++ b/.github/workflows/containers-release.yaml @@ -25,7 +25,9 @@ jobs: run: npm install --include=dev working-directory: containers - name: Test - run: wing test + run: |- + #!/bin/sh + DEBUG=1 wing test working-directory: containers - name: Pack run: wing pack diff --git a/containers/test.sh b/containers/test.sh new file mode 100755 index 00000000..0fb32500 --- /dev/null +++ b/containers/test.sh @@ -0,0 +1,2 @@ +#!/bin/sh +DEBUG=1 wing test \ No newline at end of file diff --git a/containers/tfaws-eks.w b/containers/tfaws-eks.w index 249aa7f8..124cfaf8 100644 --- a/containers/tfaws-eks.w +++ b/containers/tfaws-eks.w @@ -22,8 +22,6 @@ interface ICluster extends std.IResource { pub class ClusterBase impl ICluster { pub attributes(): ClusterAttributes { throw "Not implemented"; - // WORKAROUND: Compiler doesn't recognize that this will never return, so we need to return something - return { certificate: "", endpoint: "", name: "" }; } pub kubernetesProvider(): cdktf.TerraformProvider {