We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bec944 commit 0640e08Copy full SHA for 0640e08
.github/workflows/ompi_mpi4py_tests.yaml
@@ -19,6 +19,17 @@ jobs:
19
env:
20
${{ inputs.env_name}}: 1
21
steps:
22
+ - name: Configure hostname
23
+ run: echo 127.0.0.1 `hostname` | sudo tee -a /etc/hosts > /dev/null
24
+ if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
25
+ - name: Check hostname
26
+ run: |
27
+ hostname
28
+ cat /etc/hosts
29
+ - name: Install depencencies
30
+ run: sudo apt-get install -y -q
31
+ libnuma-dev
32
+ if: ${{ runner.os == 'Linux' }}
33
- name: Use Python
34
uses: actions/setup-python@v5
35
with:
0 commit comments