mirror of
https://codeberg.org/nsxiv/nsxiv
synced 2024-11-03 23:15:46 +00:00
35a9ca33d6
avoids our ci failing in case there's a faulty new commit on tcc.
62 lines
2.7 KiB
YAML
62 lines
2.7 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
# NOTE: "stable" tcc is too old and fails at linking. instead fetching a recent known working commit.
|
|
jobs:
|
|
full-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: |
|
|
sudo apt-get install libimlib2 libimlib2-dev xserver-xorg-core xserver-xorg-dev \
|
|
libxft2 libxft-dev libexif12 libexif-dev \
|
|
gcc clang >/dev/null
|
|
TCC_SHA="027b8fb9b88fe137447fb8bb1b61079be9702472"
|
|
wget --quiet "https://github.com/TinyCC/tinycc/archive/${TCC_SHA}.tar.gz" && tar xzf "${TCC_SHA}.tar.gz"
|
|
( cd "tinycc-$TCC_SHA" && ./configure && make && sudo make install; ) >/dev/null
|
|
# vanilla flags
|
|
CFLAGS="-std=c99 -Wall -pedantic"
|
|
# extra flags
|
|
CFLAGS+=" -Werror -Wextra -Wshadow -Wvla -Wpointer-arith -Wstrict-prototypes"
|
|
CFLAGS+=" -Wundef -Wstrict-overflow=4 -Wwrite-strings -Wunreachable-code"
|
|
CFLAGS+=" -Wbad-function-cast -Wdeclaration-after-statement"
|
|
# silence
|
|
CFLAGS+=" -Wno-sign-compare -Wno-unused-parameter -Wno-missing-field-initializers"
|
|
export CFLAGS
|
|
export OPT_DEP_DEFAULT=1
|
|
echo "### GCC BUILD ###" && make clean && CC=gcc make -s
|
|
echo "### CLANG BUILD ###" && make clean && CC=clang make -s
|
|
echo "### TCC BUILD ###" && make clean && CC=tcc make -s
|
|
|
|
minimal-build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: make
|
|
run: |
|
|
sudo apt-get install libimlib2 libimlib2-dev xserver-xorg-core xserver-xorg-dev \
|
|
gcc clang >/dev/null
|
|
sudo apt-get remove libxft2 libxft-dev libexif12 libexif-dev >/dev/null
|
|
TCC_SHA="027b8fb9b88fe137447fb8bb1b61079be9702472"
|
|
wget --quiet "https://github.com/TinyCC/tinycc/archive/${TCC_SHA}.tar.gz" && tar xzf "${TCC_SHA}.tar.gz"
|
|
( cd "tinycc-$TCC_SHA" && ./configure && make && sudo make install; ) >/dev/null
|
|
# vanilla flags
|
|
CFLAGS="-std=c99 -Wall -pedantic"
|
|
# extra flags
|
|
CFLAGS+=" -Werror -Wextra -Wshadow -Wvla -Wpointer-arith -Wstrict-prototypes"
|
|
CFLAGS+=" -Wundef -Wstrict-overflow=4 -Wwrite-strings -Wunreachable-code"
|
|
CFLAGS+=" -Wbad-function-cast -Wdeclaration-after-statement"
|
|
# silence
|
|
CFLAGS+=" -Wno-sign-compare -Wno-unused-parameter -Wno-missing-field-initializers"
|
|
export CFLAGS
|
|
export OPT_DEP_DEFAULT=0
|
|
echo "### GCC BUILD ###" && make clean && CC=gcc make -s
|
|
echo "### CLANG BUILD ###" && make clean && CC=clang make -s
|
|
echo "### TCC BUILD ###" && make clean && CC=tcc make -s
|