-
Notifications
You must be signed in to change notification settings - Fork 8
100 lines (76 loc) · 2.65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: "Build"
on:
pull_request:
push:
branches:
- main
tags:
- "**"
jobs:
build:
name: "Build"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-24.04]
php-version: [8.1]
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, xml, ctype, iconv
ini-values: phar.readonly=0
coverage: none
tools: composer
- uses: "ramsey/composer-install@v2"
- name: "Compile deptrac phar"
run: make build
- name: "Upload phar file artifact"
uses: actions/upload-artifact@v4
with:
name: deptrac.phar
path: build/deptrac-build/deptrac.phar
e2e-tests:
name: "Run e2e tests on PHP ${{ matrix.php-version }}"
needs: build
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
php-version: [8.1, 8.2, 8.3]
steps:
- name: "Checkout"
uses: actions/checkout@v2
- name: "Download deptrac.phar"
uses: actions/download-artifact@v4
with:
name: deptrac.phar
path: .
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, xml, ctype, iconv
coverage: none
- name: "Run deptrac phar without cache"
run: php deptrac.phar analyse --config-file=docs/examples/Fixture.depfile.yaml --no-cache
- name: "Cache file should not exist"
run: "[ ! -f '.deptrac.cache' ]"
- name: "Run deptrac phar with cache enabled"
run: php deptrac.phar analyse --config-file=docs/examples/Fixture.depfile.yaml
- name: "Cache file should exist"
run: "[ -f '.deptrac.cache' ]"
- name: "Run deptrac phar again with cache enabled to be sure the cache file could be reused"
run: php deptrac.phar analyse --config-file=docs/examples/Fixture.depfile.yaml
- name: "Run deptrac phar with custom cache file output"
run: php deptrac.phar analyse --config-file=docs/examples/Fixture.depfile.yaml --cache-file=.deptrac.cache2
- name: "Custom cache file should exist"
run: "[ -f '.deptrac.cache2' ]"
- name: "Run deptrac phar using transitive dependencies example"
run: php deptrac.phar analyse --config-file=docs/examples/Transitive.depfile.yaml
- name: "Run deptrac phar with --fail-on-uncovered"
run: sh .github/workflows/test-flag-fail-on-uncovered.sh