-
Notifications
You must be signed in to change notification settings - Fork 178
32 lines (25 loc) · 887 Bytes
/
debug-linux.yml
File metadata and controls
32 lines (25 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Debug (Linux)
on: [workflow_dispatch]
permissions:
contents: read
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Checkout Zfp
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.x'
architecture: x64
- name: Install Zfpy Dependencies
run: |
python -m pip install cython
python -m pip install oldest-supported-numpy
python -m pip install setuptools
- name: Install OpenMP
run: |
sudo apt-get update; sudo apt-get install -y libomp5 libomp-dev
- name: Setup Tmate Session
uses: mxschmitt/action-tmate@c0afd6f790e3a5564914980036ebf83216678101 # v3