mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-21 22:11:22 +03:00
GitHub CI: Add linux build and unit test job
This commit is contained in:
parent
dfcdf8d17d
commit
922abd7bff
104
.github/workflows/build.yaml
vendored
Normal file
104
.github/workflows/build.yaml
vendored
Normal file
@ -0,0 +1,104 @@
|
||||
name: "Linux Build"
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
linux:
|
||||
name: '${{ matrix.os }}: ${{ matrix.compiler.vendor }}'
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-22.04
|
||||
- ubuntu-20.04
|
||||
compiler:
|
||||
# The NetSurf build system can't find LLVM AR (it looks for it
|
||||
# in /usr/lib instead of /usr/bin:
|
||||
# `make: /usr/lib/llvm-ar: No such file or directory`).
|
||||
# So we need to make it explicit for llvm.
|
||||
- { vendor: gnu, CC: gcc }
|
||||
- { vendor: llvm, CC: clang, AR: llvm-ar }
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: apt-get install packages
|
||||
run: sudo apt-get update -qq &&
|
||||
sudo apt-get install --no-install-recommends -y
|
||||
bison
|
||||
build-essential
|
||||
check
|
||||
clang
|
||||
flex
|
||||
git
|
||||
gperf
|
||||
libcurl4-openssl-dev
|
||||
libgtk-3-dev
|
||||
libhtml-parser-perl
|
||||
libjpeg-dev
|
||||
libpng-dev
|
||||
librsvg2-dev
|
||||
llvm
|
||||
pkg-config
|
||||
wbritish # Needed for `/usr/share/dict/words`, used by test
|
||||
|
||||
- name: Build and install project libs
|
||||
env:
|
||||
CC: ${{ matrix.compiler.CC }}
|
||||
CXX: ${{ matrix.compiler.CXX }}
|
||||
run: |
|
||||
export TARGET_WORKSPACE="$(pwd)/projects"
|
||||
source docs/env.sh
|
||||
ns-clone -n -s
|
||||
ns-make-tools install
|
||||
ns-make-libs install
|
||||
|
||||
- name: Disable -Werror
|
||||
# We can remove this step if we ever move to GitHub properly.
|
||||
run: |
|
||||
find . -type f -name Makefile | xargs sed -i 's/-Werror//'
|
||||
|
||||
- name: Unit Tests
|
||||
# Fails when built with clang:
|
||||
# test/corestrings.c:58:F:corestrings:corestrings_test:486:
|
||||
# Assertion 'ires == NSERROR_NOMEM' failed: ires == 0, NSERROR_NOMEM == 2
|
||||
# Looks like `malloc_limit()` not working.
|
||||
if: ${{ matrix.compiler.vendor != 'llvm' }}
|
||||
env:
|
||||
CC: ${{ matrix.compiler.CC }}
|
||||
CXX: ${{ matrix.compiler.CXX }}
|
||||
run: |
|
||||
export TARGET_WORKSPACE="$(pwd)/projects"
|
||||
source docs/env.sh
|
||||
make test
|
||||
|
||||
- name: Build NetSurf GTK
|
||||
env:
|
||||
CC: ${{ matrix.compiler.CC }}
|
||||
CXX: ${{ matrix.compiler.CXX }}
|
||||
run: |
|
||||
export TARGET_WORKSPACE="$(pwd)/projects"
|
||||
source docs/env.sh
|
||||
make -j"$(nproc)" TARGET=gtk
|
||||
|
||||
- name: Build NetSurf Monkey
|
||||
env:
|
||||
CC: ${{ matrix.compiler.CC }}
|
||||
CXX: ${{ matrix.compiler.CXX }}
|
||||
run: |
|
||||
export TARGET_WORKSPACE="$(pwd)/projects"
|
||||
source docs/env.sh
|
||||
make -j"$(nproc)" TARGET=monkey
|
||||
|
||||
- name: Build NetSurf Framebuffer
|
||||
env:
|
||||
CC: ${{ matrix.compiler.CC }}
|
||||
CXX: ${{ matrix.compiler.CXX }}
|
||||
run: |
|
||||
export TARGET_WORKSPACE="$(pwd)/projects"
|
||||
source docs/env.sh
|
||||
make -j"$(nproc)" TARGET=framebuffer
|
Loading…
Reference in New Issue
Block a user