Skip to content

Commit

Permalink
DEBUG=1
Browse files Browse the repository at this point in the history
  • Loading branch information
eladb committed May 13, 2024
1 parent 6562ab8 commit fd2872a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/containers-pull.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/containers-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions containers/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
DEBUG=1 wing test
2 changes: 0 additions & 2 deletions containers/tfaws-eks.w
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit fd2872a

Please sign in to comment.