File tree 5 files changed +5
-127
lines changed 5 files changed +5
-127
lines changed Original file line number Diff line number Diff line change @@ -14,36 +14,11 @@ runs:
14
14
mkdir -p vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release
15
15
ln -s /usr/local/lib/libc_v8.a vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release/libc_v8.a
16
16
17
- - name : install deps
17
+ - name : libiconv
18
18
shell : bash
19
19
run : |
20
20
ln -s /usr/local/lib/libiconv vendor/libiconv
21
21
22
- ln -s /usr/local/lib/netsurf/build vendor/netsurf/build
23
- ln -s /usr/local/lib/netsurf/lib vendor/netsurf/lib
24
- ln -s /usr/local/lib/netsurf/include vendor/netsurf/include
25
-
26
- # detect file change
27
-
28
- id : changes
29
- with :
30
- filters : |
31
- netsurf:
32
- - 'vendor/netsurf/**'
33
-
34
- # if a vendor has changed, install build dependencies.
35
- - name : install build dependencies
36
- if : steps.changes.outputs.netsurf == 'true'
37
- shell : bash
38
- run : |
39
- apt update && \
40
- apt install -y git curl bash xz-utils python3 ca-certificates pkg-config \
41
- libglib2.0-dev gperf libexpat1-dev cmake build-essential
42
-
43
- # if netsurf has changed, force a rebuild.
44
- - name : re-build netsurf
45
- if : steps.changes.outputs.netsurf == 'true'
22
+ - name : build netsurf
46
23
shell : bash
47
- run : |
48
- make clean-netsurf
49
- make install-netsurf
24
+ run : make install-netsurf
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 36
36
# Allows you to run this workflow manually from the Actions tab
37
37
workflow_dispatch :
38
38
39
- permissions :
40
- pull-requests : read # required for dorny/paths-filter
41
- contents : read
42
- packages : read
43
-
44
39
jobs :
45
40
wpt :
46
41
name : web platform tests
Original file line number Diff line number Diff line change 34
34
# Allows you to run this workflow manually from the Actions tab
35
35
workflow_dispatch :
36
36
37
- permissions :
38
- pull-requests : read # required for dorny/paths-filter
39
- contents : read
40
- packages : read
41
-
42
37
jobs :
43
38
zig-build-dev :
44
39
name : zig build dev
69
64
zig-build-release :
70
65
name : zig build release
71
66
72
- # Don't run the CI with draft PR.
73
- if : github.event.pull_request.draft == false
67
+ # Don't run the CI on PR
68
+ if : github.event_name != 'pull_request'
74
69
75
70
runs-on : ubuntu-latest
76
71
container :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments