Skip to content

Commit

Permalink
Debug trigger output, TO BE REVERTED!
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Mar 31, 2021
1 parent 3db1d7f commit 254e755
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/gen-workflow-ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ def main():
f' MESSAGE: "GPU Tests triggered by GitHub"\n'
f' BUILDKITE_API_ACCESS_TOKEN: ${{{{ secrets.BUILDKITE_TOKEN }}}}\n'
f' BUILD_ENV_VARS: "{{\\"PIPELINE_MODE\\": \\"GPU FULL\\"}}"\n'
f' - name Debug\n'
f' run: |\n'
f' echo "url: ${{{{ steps.build.outputs.url }}}}"\n'
f' echo "json string: ${{{{ steps.build.outputs.json }}}}"\n'
f' echo "url from json object: ${{{{ fromJSON( steps.build.outputs.json ).web_url }}}}"\n'
f' echo "json object: ${{{{ fromJSON( steps.build.outputs.json ) }}}}"\n'
f'\n'
f' publish-test-results:\n'
f' name: "Publish Unit Tests Results"\n'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -820,6 +820,12 @@ jobs:
MESSAGE: "GPU Tests triggered by GitHub"
BUILDKITE_API_ACCESS_TOKEN: ${{ secrets.BUILDKITE_TOKEN }}
BUILD_ENV_VARS: "{\"PIPELINE_MODE\": \"GPU FULL\"}"
- name Debug
run: |
echo "url: ${{ steps.build.outputs.url }}"
echo "json string: ${{ steps.build.outputs.json }}"
echo "url from json object: ${{ fromJSON( steps.build.outputs.json ).web_url }}"
echo "json object: ${{ fromJSON( steps.build.outputs.json ) }}"
publish-test-results:
name: "Publish Unit Tests Results"
Expand Down

0 comments on commit 254e755

Please sign in to comment.