Skip to content

Commit

Permalink
debug inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
derpsteb committed Oct 23, 2023
1 parent 1b14fb5 commit 7db4d25
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/e2e-s3proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
create-cluster:
runs-on: ubuntu-22.04
outputs:
kubeconfig: ${{ steps.kubeconfig.outputs.kubeconfig }}
bar: ${{ steps.kubeconfig.outputs.foo }}
permissions:
id-token: write
checks: write
Expand Down Expand Up @@ -126,7 +126,10 @@ jobs:
id: kubeconfig
shell: bash
run: |
echo kubeconfig=$(cat ${{ steps.create-cluster.outputs.kubeconfig }}) > "$GITHUB_OUTPUT"
echo "1"
echo foo=$(cat ${{ steps.create-cluster.outputs.kubeconfig }}) > "$GITHUB_OUTPUT"
echo "$foo"
echo "2"
build-s3proxy-mint:
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -192,11 +195,17 @@ jobs:
# Don't trigger in forks, use head on pull requests, use default otherwise.
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || github.event.pull_request.head.sha || '' }}

- name: Debug
shell: bash
run: |
echo "printing inputs"
echo ${{ needs.create-cluster.outputs.bar }}
- name: Run s3proxy e2e test
uses: ./.github/actions/e2e_s3proxy
with:
mintImage: "ghcr.io/edgelesssys/constellation/mint:v2.13.0-pre.0.20231012170310-31a6feb68349"
# mintImage: ${{ needs.build-s3proxy-mint.outputs.mintImage }}
s3proxyImage: "ghcr.io/edgelesssys/constellation/s3proxy:v2.13.0-pre.0.20231012170310-31a6feb68349"
# s3proxyImage: ${{ needs.build-s3proxy-mint.outputs.s3proxyImage }}
kubeconfig: ${{ needs.create-cluster.outputs.kubeconfig }}
kubeconfig: ${{ needs.create-cluster.outputs.bar }}

0 comments on commit 7db4d25

Please sign in to comment.