mirror of https://github.com/OpenIPC/firmware.git
Fix ipctool building issues (#414)
parent
4b7c6f935a
commit
a2ae002ff9
|
@ -523,7 +523,7 @@ jobs:
|
|||
TG_CHANNEL: ${{ secrets.TELEGRAM_CHANNEL_OPENIPC_DEV }}
|
||||
if: ${{ !env.ACT && failure() && github.event_name != 'pull_request' }}
|
||||
run: |
|
||||
TG_OPTIONS="-s --connect-timeout 30 --max-time 30"
|
||||
TG_OPTIONS="-s --connect-timeout 30 --retry 10 --verbose"
|
||||
TG_NOTIFY="${TG_NOTIFY:=Warning, Buildroot compiling error... ${{ matrix.platform }} (${{ matrix.release }})}"
|
||||
TG_HEADER=$(echo -e "\r\n$TG_NOTIFY \r\n\r\nCommit: $GIT_HASH \r\nBranch: $BRANCH \r\nTag: $TAG_NAME \r\n\r\n\xE2\x9A\xA0 GitHub Actions")
|
||||
curl $TG_OPTIONS -H "Content-Type: multipart/form-data" -X POST https://api.telegram.org/bot$TG_TOKEN/sendMessage \
|
||||
|
|
|
@ -4,15 +4,13 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
IPCTOOL_VERSION = HEAD
|
||||
IPCTOOL_VERSION = $(shell git ls-remote https://github.com/OpenIPC/ipctool/ master | awk '{ print $$1 }')
|
||||
IPCTOOL_SITE = https://github.com/OpenIPC/ipctool.git
|
||||
IPCTOOL_SITE_METHOD = git
|
||||
IPCTOOL_LICENSE = MIT
|
||||
IPCTOOL_LICENSE_FILES = LICENSE
|
||||
|
||||
IPCTOOL_OVERRIDE_SRCDIR_RSYNC_EXCLUSIONS=--include .git
|
||||
|
||||
IPCTOOL_CONF_OPTS += -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release
|
||||
IPCTOOL_CONF_OPTS += -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DSKIP_VERSION=ON
|
||||
|
||||
IPCTOOL_MAKE_OPTS += VERBOSE=1
|
||||
|
||||
|
|
Loading…
Reference in New Issue