mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
[ACTIONS] Less verbose log for GitHub log action + change repo format for libxmlrpc package (#52)
This commit is contained in:
@@ -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
|
#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
|
sudo apt update && sudo apt install -y gsfonts
|
||||||
make miyoo_uclibc_defconfig
|
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
|
- name: generate-graphs
|
||||||
run: |
|
run: |
|
||||||
cd ${{ inputs.submodule || '.' }}
|
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
|
#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
|
sudo apt update && sudo apt install -y gsfonts
|
||||||
make miyoo_musl_defconfig
|
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
|
- name: generate-graphs
|
||||||
run: |
|
run: |
|
||||||
@@ -183,7 +203,17 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd ${{ inputs.submodule || '.' }}
|
cd ${{ inputs.submodule || '.' }}
|
||||||
make miyoo_uclibc_static_defconfig
|
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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
@@ -222,7 +252,18 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd ${{ inputs.submodule || '.' }}
|
cd ${{ inputs.submodule || '.' }}
|
||||||
make miyoo_musl_static_defconfig
|
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
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
# 1.58.02 (code/advanced@r3119)
|
# 1.58.02 (code/advanced@r3119)
|
||||||
LIBXMLRPC_VERSION = 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_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 = 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
|
LIBXMLRPC_LICENSE_FILES = doc/COPYING
|
||||||
|
|||||||
Reference in New Issue
Block a user