forked from cvmfs/cvmfsexec
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (47 loc) · 1.21 KB
/
build.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Make distributions and test
on:
# run workflows on main master and release/** branches
push:
branches:
- main
- master
- release/**
# run workflows on pull requests against the same branches
pull_request:
branches:
- main
- master
- release/**
# automatically cancel redundant builds
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
makeandtest:
name: ${{ matrix.distro }}:${{ matrix.version }}
strategy:
fail-fast: false
matrix:
include:
- distro: eurolinux/centos-7
version: latest
- distro: rockylinux
version: 8
- distro: rockylinux
version: 9
- distro: opensuse/leap
version: 15
- distro: debian
version: 11
- distro: debian
version: 12
- distro: ubuntu
version: 22.04
- distro: ubuntu
version: 24.04
runs-on: ubuntu-24.04
steps:
- name: Get source code
uses: actions/checkout@v3
- name: Run make-and-test under docker
run: ./ci/docker-run ${{ matrix.distro }}:${{ matrix.version }}