2021-12-28 21:36:41 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
|
|
|
|
2022-01-03 16:19:23 +00:00
|
|
|
# NOTE: "stable" tcc is too old and fails at linking. instead fetching a recent known working commit.
|
2021-12-28 21:36:41 +00:00
|
|
|
jobs:
|
2022-06-16 03:08:09 +00:00
|
|
|
build:
|
2021-12-28 21:36:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2022-01-03 16:24:18 +00:00
|
|
|
- name: dep
|
2021-12-28 21:36:41 +00:00
|
|
|
run: |
|
2022-02-20 07:55:17 +00:00
|
|
|
sudo apt-get update
|
2021-12-28 21:36:41 +00:00
|
|
|
sudo apt-get install libimlib2 libimlib2-dev xserver-xorg-core xserver-xorg-dev \
|
|
|
|
libxft2 libxft-dev libexif12 libexif-dev \
|
2022-10-07 13:37:44 +00:00
|
|
|
gcc clang git bc
|
2022-01-03 16:19:23 +00:00
|
|
|
TCC_SHA="027b8fb9b88fe137447fb8bb1b61079be9702472"
|
2022-01-03 16:24:18 +00:00
|
|
|
wget "https://github.com/TinyCC/tinycc/archive/${TCC_SHA}.tar.gz" && tar xzf "${TCC_SHA}.tar.gz"
|
2022-10-07 13:37:44 +00:00
|
|
|
( cd "tinycc-$TCC_SHA" && ./configure && make -j"$(nproc)" && sudo make install; )
|
2022-01-03 16:24:18 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
2022-08-09 14:21:52 +00:00
|
|
|
CFLAGS="$(sed '/^#/d' etc/woodpecker/CFLAGS | paste -d ' ' -s)"
|
2022-06-16 03:08:09 +00:00
|
|
|
build () {
|
2022-10-07 13:37:44 +00:00
|
|
|
for cc in "gcc" "clang"; do
|
2022-06-16 03:08:09 +00:00
|
|
|
echo "### $cc - $2 build ###"
|
|
|
|
make clean && make -s -j"$(nproc)" CC="$cc" CFLAGS="$CFLAGS" LDFLAGS="$CFLAGS" OPT_DEP_DEFAULT="$1"
|
|
|
|
done
|
|
|
|
}
|
2022-10-07 13:37:44 +00:00
|
|
|
# try all combination with tcc #
|
|
|
|
etc/woodpecker/try-all-builds.sh
|
|
|
|
# full-build with gcc and clang #
|
2022-06-16 03:08:09 +00:00
|
|
|
build "1" "full"
|
|
|
|
# ensure minimal-build works without opt deps installed
|
|
|
|
sudo apt-get remove libxft2 libxft-dev libexif12 libexif-dev >/dev/null
|
|
|
|
build "0" "minimal"
|
2022-08-07 19:00:14 +00:00
|
|
|
macOS-build:
|
|
|
|
runs-on: macOS-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: dep
|
|
|
|
run: |
|
|
|
|
brew update
|
2023-01-12 04:52:28 +00:00
|
|
|
# see: https://github.com/actions/setup-python/issues/577
|
|
|
|
brew install imlib2 libx11 libxft libexif giflib webp || true
|
2022-08-07 19:00:14 +00:00
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
# libinotify-kqueue isn't available on homebrew
|
|
|
|
make clean && make -s CC=gcc OPT_DEP_DEFAULT=1 HAVE_INOTIFY=0
|
|
|
|
# force uninstallation with --ignore-dependencies
|
|
|
|
brew uninstall --ignore-dependencies libxft libexif giflib webp
|
|
|
|
make clean && make -s CC=gcc OPT_DEP_DEFAULT=0
|