File: linuxbuild.yml

package info (click to toggle)
pgmodeler 1.0.0~beta1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 16,508 kB
  • sloc: cpp: 92,739; xml: 27; makefile: 15; sh: 15
file content (34 lines) | stat: -rw-r--r-- 685 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
31
32
33
34
name: Linux build

on:
  push:
    branches: [ master, develop, 1.0.* ]
    tags: 1.0.*
    
  pull_request:
    branches: [ master, develop, 1.0.* ]

jobs:
  build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        qt: ['6.2.4', '6.3.2', '6.4.1']

    steps:
    - uses: actions/checkout@v2
      
    - name: Installing Qt framework
      uses: jurplel/install-qt-action@v2
      with:
        version: ${{ matrix.qt }}      

    - name: Running qmake
      run:  cd $GITHUB_WORKSPACE; qmake pgmodeler.pro -r PREFIX=$GITHUB_WORKSPACE/build CONFIG+=debug

    - name: Building pgModeler
      run: make -j6
     
    - name: Deploying pgModeler
      run: make install