[ACTIONS] Less verbose log for GitHub log action + change repo format for libxmlrpc package (#52)

This commit is contained in:
tiopex
2023-11-14 13:25:33 +01:00
committed by GitHub
parent 267973cf1d
commit 89d86217ef
2 changed files with 46 additions and 5 deletions

View File

@@ -49,8 +49,18 @@ jobs:
#apt update && apt install -y wget unzip build-essential git bc swig libncurses-dev libpython3-dev libssl-dev cpio rsync subversion
sudo apt update && sudo apt install -y gsfonts
make miyoo_uclibc_defconfig
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}"
set -o pipefail
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}" 2>&1 \
|tee build.log \
|grep ">>>"
- name: Archive build logs (uClibc)
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: build-logs (uClibc)
path: build.log
- name: generate-graphs
run: |
cd ${{ inputs.submodule || '.' }}
@@ -120,7 +130,17 @@ jobs:
#apt update && apt install -y wget unzip build-essential git bc swig libncurses-dev libpython3-dev libssl-dev cpio rsync subversion
sudo apt update && sudo apt install -y gsfonts
make miyoo_musl_defconfig
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}"
set -o pipefail
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}" 2>&1 \
|tee build.log \
|grep ">>>"
- name: Archive build logs (musl)
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: build-logs (musl)
path: build.log
- name: generate-graphs
run: |
@@ -183,7 +203,17 @@ jobs:
run: |
cd ${{ inputs.submodule || '.' }}
make miyoo_uclibc_static_defconfig
make sdk
set -o pipefail
make sdk 2>&1 \
|tee build.log \
|grep ">>>"
- name: Archive build logs (uClibc static)
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: build-logs (uClibc static)
path: build.log
- uses: actions/upload-artifact@v3
with:
@@ -222,7 +252,18 @@ jobs:
run: |
cd ${{ inputs.submodule || '.' }}
make miyoo_musl_static_defconfig
make sdk
set -o pipefail
make sdk 2>&1 \
|tee build.log \
|grep ">>>"
- name: Archive build logs (musl static)
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: build-logs (musl static)
path: build.log
- uses: actions/upload-artifact@v3
with:

View File

@@ -6,7 +6,7 @@
# 1.58.02 (code/advanced@r3119)
LIBXMLRPC_VERSION = r3119
LIBXMLRPC_SITE = https://svn.code.sf.net/p/xmlrpc-c/code/advanced
LIBXMLRPC_SITE = svn://svn.code.sf.net/p/xmlrpc-c/code/advanced
LIBXMLRPC_SITE_METHOD = svn
LIBXMLRPC_LICENSE = BSD-3-Clause (xml-rpc main code and abyss web server), BSD like (lib/expat), Python 1.5.2 license (parts of xmlrpc_base64.c)
LIBXMLRPC_LICENSE_FILES = doc/COPYING