diff options
author | Kazuhiro NISHIYAMA <zn@mbf.nifty.com> | 2019-09-13 11:15:52 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <znz@users.noreply.github.com> | 2019-09-13 13:44:03 +0900 |
commit | 3c162df9d4a80bc09d88eeb36db7d59ea0034b1d (patch) | |
tree | 6c5a52fcddcc2b650e44e40fde323b41113c722d | |
parent | 69acf40b45823e6cc7d12476349a9251a307d1f0 (diff) |
Dump some information
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/2457
-rw-r--r-- | .github/workflows/ubuntu.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index 26d439840e..7e860dc181 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -14,6 +14,32 @@ jobs: test_task: [ "check", "test-bundler", "test-bundled-gems" ] fail-fast: false steps: + - run: env | sort + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Dump job context + env: + JOB_CONTEXT: ${{ toJson(job) }} + run: echo "$JOB_CONTEXT" + - name: Dump steps context + env: + STEPS_CONTEXT: ${{ toJson(steps) }} + run: echo "$STEPS_CONTEXT" + - name: Dump runner context + env: + RUNNER_CONTEXT: ${{ toJson(runner) }} + run: echo "$RUNNER_CONTEXT" + - name: Dump strategy context + env: + STRATEGY_CONTEXT: ${{ toJson(strategy) }} + run: echo "$STRATEGY_CONTEXT" + - name: Dump matrix context + env: + MATRIX_CONTEXT: ${{ toJson(matrix) }} + run: echo "$MATRIX_CONTEXT" + - name: Install libraries run: | set -x |