File: build.yml

package info (click to toggle)
psfex 3.24.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,088 kB
  • sloc: ansic: 28,892; sh: 1,050; makefile: 250; python: 114
file content (30 lines) | stat: -rw-r--r-- 544 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
30
name: build

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master
  workflow_dispatch:

jobs:

  build-on-linux:
    name: compile on linux Ubuntu
    continue-on-error: false
    runs-on: ubuntu-latest

    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Install dependency
        run: |
          sudo apt-get install libatlas-base-dev libfftw3-dev libplplot-dev
      - name: Build on Linux Ubuntu
        run: |
          ./autogen.sh
          ./configure
          make -j