File: builder.yml

package info (click to toggle)
weakforced 3.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,196 kB
  • sloc: cpp: 20,397; python: 2,002; sh: 700; makefile: 432
file content (28 lines) | stat: -rw-r--r-- 572 bytes parent folder | download | duplicates (2)
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
---
name: 'Test package building for specific distributions'

on:
  push:
  pull_request:
  schedule:
    - cron: '0 22 * * 2'

jobs:
  build:
    name: build.sh
    # on a ubuntu-20.04 VM
    runs-on: ubuntu-22.04
    strategy:
      matrix:
        os:
          - el-8
          - el-9
          - amazon-2023
          - debian-bullseye
          - debian-bookworm
    steps:
      - uses: actions/checkout@v4
        with:
          fetch-depth: 0  # for correct version numbers
          submodules: recursive
      - run: builder/build.sh -e 1 -v  ${{ matrix.os }}