-
Notifications
You must be signed in to change notification settings - Fork 5
61 lines (55 loc) · 1.27 KB
/
builds.ignore.yaml
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
52
53
54
55
56
57
58
59
60
61
# SPDX-License-Identifier: Apache-2.0 OR MIT
#
# SPDX-FileCopyrightText: Copyright 2022 Micron Technology, Inc.
name: Builds
on:
push:
branches:
- master
- "v[0-9]+.[0-9]+"
paths-ignore:
- "**.c"
- "**.h"
- "**.java"
- "**/meson.build"
- "subprojects/*.wrap"
- "cross/*.ini"
- .github/workflows/builds.yaml
- meson_options.txt
- pom.xml
- VERSION
pull_request:
types: [opened, synchronize, reopened]
paths-ignore:
- "**.c"
- "**.h"
- "**.java"
- "**/meson.build"
- "subprojects/*.wrap"
- "cross/*.ini"
- .github/workflows/builds.yaml
- meson_options.txt
- pom.xml
- VERSION
concurrency:
group: ${{ github.workflow }}-ignore-${{ github.head_ref }}
cancel-in-progress: true
permissions: {}
jobs:
normal:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
image:
- almalinux-8
- almalinux-9
- cross-s390x
- fedora-37
- ubuntu-18.04
- ubuntu-20.04
- ubuntu-22.04
buildtype: [release, debug]
steps:
- run: |
echo "Skipping ${{ github.workflow }}/${{ github.job }}/${{ matrix.image }}/${{ matrix.buildtype }}"