Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 3 additions & 28 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,36 +14,11 @@ runs:
mkdir -p vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release
ln -s /usr/local/lib/libc_v8.a vendor/jsruntime-lib/vendor/v8/${{env.ARCH}}/release/libc_v8.a

- name: install deps
- name: libiconv
shell: bash
run: |
ln -s /usr/local/lib/libiconv vendor/libiconv

ln -s /usr/local/lib/netsurf/build vendor/netsurf/build
ln -s /usr/local/lib/netsurf/lib vendor/netsurf/lib
ln -s /usr/local/lib/netsurf/include vendor/netsurf/include

# detect file change
- uses: dorny/paths-filter@v3.0.2
id: changes
with:
filters: |
netsurf:
- 'vendor/netsurf/**'

# if a vendor has changed, install build dependencies.
- name: install build dependencies
if: steps.changes.outputs.netsurf == 'true'
shell: bash
run: |
apt update && \
apt install -y git curl bash xz-utils python3 ca-certificates pkg-config \
libglib2.0-dev gperf libexpat1-dev cmake build-essential

# if netsurf has changed, force a rebuild.
- name: re-build netsurf
if: steps.changes.outputs.netsurf == 'true'
- name: build netsurf
shell: bash
run: |
make clean-netsurf
make install-netsurf
run: make install-netsurf
59 changes: 0 additions & 59 deletions .github/workflows/build-deps.yml

This file was deleted.

5 changes: 0 additions & 5 deletions .github/workflows/wpt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
pull-requests: read # required for dorny/paths-filter
contents: read
packages: read

jobs:
wpt:
name: web platform tests
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/zig-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,6 @@ on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

permissions:
pull-requests: read # required for dorny/paths-filter
contents: read
packages: read

jobs:
zig-build-dev:
name: zig build dev
Expand Down Expand Up @@ -69,8 +64,8 @@ jobs:
zig-build-release:
name: zig build release

# Don't run the CI with draft PR.
if: github.event.pull_request.draft == false
# Don't run the CI on PR
if: github.event_name != 'pull_request'

runs-on: ubuntu-latest
container:
Expand Down
28 changes: 0 additions & 28 deletions Dockerfile.deps

This file was deleted.