debug linux test #250
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow is trying to display all the environment variables that are | |
# available to the job of all the available images, https://github.com/actions/runner-images | |
# It runs on demand | |
name: display-github-context | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
nix_jobs: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
- macos-11 | |
- macos-12 | |
- macos-13 | |
# custom runner | |
# - macos-13-xl | |
runs-on: ${{ matrix.os }} | |
steps: | |
- run: | | |
echo "RUNNER_OS: $RUNNER_OS" | |
echo "RUNNER_ARCH: $RUNNER_ARCH" | |
echo 'GITHUB_CONTEXT is "${{ toJSON(github) }}"' | |
windows_jobs: | |
strategy: | |
matrix: | |
os: | |
- windows-2019 | |
- windows-2022 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- run: | | |
echo "RUNNER_OS: $env:RUNNER_OS" | |
echo "RUNNER_ARCH: $env:RUNNER_ARCH" | |
echo 'GITHUB_CONTEXT is "${{ toJSON(github) }}"' |