-
Notifications
You must be signed in to change notification settings - Fork 8
44 lines (42 loc) · 975 Bytes
/
pipes.yaml
File metadata and controls
44 lines (42 loc) · 975 Bytes
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
name: Pipes
on:
pull_request:
branches:
- master
paths:
- 'bin/**'
- 'build/**'
- 'scripts/**'
- 'src/**'
types:
- labeled
- unlabeled
- opened
- synchronize
push:
branches:
- master
paths:
- 'bin/**'
- 'build/**'
- 'scripts/**'
- 'src/**'
workflow_dispatch:
jobs:
build_and_verify:
name: Build and Verify
if: |
github.event_name == 'push'
|| github.event_name == 'workflow_dispatch'
|| (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'ci'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Verify builds are correct
run: |
make clean
make generate
./scripts/git-has-changes.sh
- name: Build and verify CLI docker images
run: |
./scripts/build-and-verify-cli-images.sh mobtitude/php-xdebug