File: debug-linux.yml

package info (click to toggle)
zfp 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,744 kB
  • sloc: cpp: 20,656; ansic: 18,871; pascal: 1,231; f90: 907; python: 255; makefile: 183; sh: 79; fortran: 70
file content (29 lines) | stat: -rw-r--r-- 727 bytes parent folder | download
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
name: Debug (Linux)

on: [workflow_dispatch]

jobs:
    debug:
      runs-on: ubuntu-latest
      steps:
        - name: Checkout Zfp
          uses: actions/checkout@v4

        - name: Setup Python
          uses: actions/setup-python@v4
          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@v3