File tree Expand file tree Collapse file tree 5 files changed +5
-127
lines changed Expand file tree Collapse file tree 5 files changed +5
-127
lines changed Original file line number Diff line number Diff line change @@ -14,36 +14,11 @@ runs:
1414 mkdir -p vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release
1515 ln -s /usr/local/lib/libc_v8.a vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release/libc_v8.a
1616
17- - name : install deps
17+ - name : libiconv
1818 shell : bash
1919 run : |
2020 ln -s /usr/local/lib/libiconv vendor/libiconv
2121
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- - uses : dorny/paths-filter@v3.0.2
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
4623 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 3636 # Allows you to run this workflow manually from the Actions tab
3737 workflow_dispatch :
3838
39- permissions :
40- pull-requests : read # required for dorny/paths-filter
41- contents : read
42- packages : read
43-
4439jobs :
4540 wpt :
4641 name : web platform tests
Original file line number Diff line number Diff line change 3434 # Allows you to run this workflow manually from the Actions tab
3535 workflow_dispatch :
3636
37- permissions :
38- pull-requests : read # required for dorny/paths-filter
39- contents : read
40- packages : read
41-
4237jobs :
4338 zig-build-dev :
4439 name : zig build dev
6964 zig-build-release :
7065 name : zig build release
7166
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'
7469
7570 runs-on : ubuntu-latest
7671 container :
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments