feature test hisiv500 build
Some checks failed
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Failing after 5s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 45s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 44s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 48s
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 49s
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 55s
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 44s
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 43s
linux-hisiv500-gcc / linux-gcc-hisiv500 (push) Failing after 3m51s
Some checks failed
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Failing after 5s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 45s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 44s
rpcrypto-build / build (Debug, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 48s
rpcrypto-build / build (Debug, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 49s
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 55s
rpcrypto-build / build (Release, mipsel-openwrt-linux-musl.toolchain.cmake) (push) Successful in 44s
rpcrypto-build / build (Release, mipsel-openwrt-linux.toolchain.cmake) (push) Successful in 43s
linux-hisiv500-gcc / linux-gcc-hisiv500 (push) Failing after 3m51s
This commit is contained in:
parent
be3e534acf
commit
3c2080525d
@ -26,7 +26,6 @@ jobs:
|
||||
- Release
|
||||
toolchain:
|
||||
# - host-afl.toolchain.cmake
|
||||
- hisiv500.toolchain.cmake
|
||||
- hisiv510.toolchain.cmake
|
||||
- himix200.toolchain.cmake
|
||||
# - mips64el-linux-gnuabi64.toolchain.cmake
|
||||
|
77
.gitea/workflows/linux-hisiv500-gcc.yaml
Normal file
77
.gitea/workflows/linux-hisiv500-gcc.yaml
Normal file
@ -0,0 +1,77 @@
|
||||
name: linux-hisiv500-gcc
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- '.gitea/workflows/linux-hisiv500-gcc.yaml'
|
||||
- 'toolchains/hisiv500.toolchain.cmake'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'CMakeLists.txt'
|
||||
- 'cmake/**'
|
||||
pull_request:
|
||||
paths:
|
||||
- '.gitea/workflows/linux-hisiv500-gcc.yaml'
|
||||
- 'toolchains/hisiv500.toolchain.cmake'
|
||||
- 'src/**'
|
||||
- 'tests/**'
|
||||
- 'CMakeLists.txt'
|
||||
- 'cmake/**'
|
||||
|
||||
concurrency:
|
||||
group: linux-hisiv500-gcc-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
permissions:
|
||||
- read
|
||||
|
||||
jobs:
|
||||
linux-gcc-hisiv500:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
with:
|
||||
submodules: true
|
||||
|
||||
- name: cache-qemu
|
||||
id: cache-qemu
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: qemu-install
|
||||
key: qemu-hisiv500-install-20220502-2
|
||||
|
||||
- name: checkout-qemu
|
||||
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
mkdir qemu && cd qemu
|
||||
git init
|
||||
git remote add origin https://gitlab.com/qemu-project/qemu.git
|
||||
git fetch --depth=1 origin f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
|
||||
git checkout f5643914a9e8f79c606a76e6a9d7ea82a3fc3e65
|
||||
|
||||
- name: install-qemu-build-deps
|
||||
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
sudo apt-get update -y
|
||||
sudo apt-get install -y autoconf automake autotools-dev ninja-build
|
||||
|
||||
- name: qemu
|
||||
if: steps.cache-qemu.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
cd qemu
|
||||
./configure --target-list=arm-linux-user --prefix=$GITHUB_WORKSPACE/qemu-install
|
||||
make -j `nproc`
|
||||
make install
|
||||
|
||||
- name: build-in-centos
|
||||
uses: addnab/docker-run-action@v3
|
||||
with:
|
||||
image: tqcq/hisi:centos
|
||||
options: --rm --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
||||
run: |
|
||||
yum clean all
|
||||
yum install -y libarchive cmake make gcc gcc-c++ openssl-devel autoconf libtool pkg-config
|
||||
cmake --build build -DCMAKE_TOOLCHAIN_FILE=toolchains/hisiv500.toolchain.cmake -DULIB_BUILD_TESTS=ON -DCMAKE_CROSSCOMPILING_EMULATOR="qemu-arm;-L;/opt/hisi-linux/x86-arm/arm-hisiv500-linux/"
|
||||
cmake --build build --target all -- -j `nproc`
|
||||
|
||||
export PATH=${{ github.workspace }}/qemu-install/bin:$PATH
|
||||
cmake --build build --target test -- -j `nproc` --output-on-failure
|
Loading…
Reference in New Issue
Block a user