Skip to content

Commit

Permalink
Add uname -a to jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Jun 13, 2020
1 parent 1b20816 commit f3464db
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ jobs:
container:
image: phadej/ghc:8.10.1-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -68,6 +71,9 @@ jobs:
container:
image: phadej/ghc:8.8.3-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -112,6 +118,9 @@ jobs:
container:
image: phadej/ghc:8.6.5-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -156,6 +165,9 @@ jobs:
container:
image: phadej/ghc:8.4.4-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -200,6 +212,9 @@ jobs:
container:
image: phadej/ghc:8.2.2-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -244,6 +259,9 @@ jobs:
container:
image: phadej/ghc:8.0.2-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -288,6 +306,9 @@ jobs:
container:
image: phadej/ghc:7.10.3-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -332,6 +353,9 @@ jobs:
container:
image: phadej/ghc:7.8.4-bionic
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -370,6 +394,9 @@ jobs:
container:
image: phadej/ghc:7.6.3-xenial
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down Expand Up @@ -412,6 +439,9 @@ jobs:
container:
image: phadej/ghc:8.8.3-xenial
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ jobs:
name: validate.sh macos ghc-8.8.3
runs-on: macos-latest
steps:
- name: System info
run: |
uname -a
- name: Install Autotools
run: |
brew install automake
Expand Down Expand Up @@ -74,6 +77,9 @@ jobs:
runs-on: macos-latest
needs: validate-macos-8_8_3
steps:
- name: System info
run: |
uname -a
- name: Install Autotools
run: |
brew install automake
Expand Down
3 changes: 3 additions & 0 deletions boot/ci-linux.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
container:
image: phadej/ghc:{{job.version}}-{% if job.xenial %}xenial{% else %}bionic{% endif %}
steps:
- name: System info
run: |
uname -a
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/development-tools-for-github-actions#add-a-system-path-add-path
- name: Set PATH
run: |
Expand Down
3 changes: 3 additions & 0 deletions boot/ci-macos.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
needs: validate-macos-{{ mangleVersion needs }}
{% endfor %}
steps:
- name: System info
run: |
uname -a
- name: Install Autotools
run: |
brew install automake
Expand Down

0 comments on commit f3464db

Please sign in to comment.