e4b4c8d2c2
All checks were successful
rpcrypto-build / build (Debug, himix200.toolchain.cmake) (push) Successful in 56s
linux-mips64-gcc / linux-gcc-mips64el (push) Successful in 1m22s
rpcrypto-build / build (Debug, hisiv510.toolchain.cmake) (push) Successful in 1m8s
rpcrypto-build / build (Release, hisiv510.toolchain.cmake) (push) Successful in 1m11s
linux-x64-gcc / linux-gcc (push) Successful in 44s
rpcrypto-build / build (Release, himix200.toolchain.cmake) (push) Successful in 48s
linux-hisiv500-gcc / linux-gcc-hisiv500 (push) Successful in 1m5s
98 lines
3.4 KiB
YAML
98 lines
3.4 KiB
YAML
name: rpcrypto-build
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".gitea/workflows/build.yaml"
|
|
- "toolchains/hisiv510.toolchain.cmake"
|
|
- "toolchains/himix200.toolchain.cmake"
|
|
- "toolchains/mipsel-openwrt-linux-musl.toolchain.cmake"
|
|
- "toolchains/mipsel-openwrt-linux.toolchain.cmake"
|
|
- "src/**"
|
|
- "3party/**"
|
|
- "tests/**"
|
|
- "CMakeLists.txt"
|
|
- "cmake/**"
|
|
pull_request:
|
|
paths:
|
|
- ".gitea/workflows/build.yaml"
|
|
- "toolchains/hisiv510.toolchain.cmake"
|
|
- "toolchains/himix200.toolchain.cmake"
|
|
- "toolchains/mipsel-openwrt-linux-musl.toolchain.cmake"
|
|
- "toolchains/mipsel-openwrt-linux.toolchain.cmake"
|
|
- "3party/**"
|
|
- "src/**"
|
|
- "tests/**"
|
|
- "CMakeLists.txt"
|
|
- "cmake/**"
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
build_type:
|
|
- Debug
|
|
- Release
|
|
toolchain:
|
|
# - host-afl.toolchain.cmake
|
|
- hisiv510.toolchain.cmake
|
|
- himix200.toolchain.cmake
|
|
# - mipsel-openwrt-linux-musl.toolchain.cmake
|
|
# - mipsel-openwrt-linux.toolchain.cmake
|
|
runs-on: ubuntu-20.04
|
|
env:
|
|
build_command: |
|
|
cd ${{ github.workspace }}
|
|
pwd
|
|
ls -alh
|
|
# /bin/bash scripts/install-flatc.sh
|
|
cmake . -Bbuild \
|
|
-DCMAKE_TOOLCHAIN_FILE=toolchains/${{ matrix.toolchain }} \
|
|
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
|
|
-DCMAKE_INSTALL_PREFIX=./install \
|
|
-DCMAKE_VERBOSE_MAKEFILE=ON ${CUSTOM_CMAKE_ARGS}
|
|
cmake --build build --config ${{ matrix.build_type }} --target all -- -j `nproc`
|
|
cmake --build build --config ${{ matrix.build_type }} --target install
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: true
|
|
fetch-depth: 1
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- name: build-host
|
|
if: matrix.toolchain == 'host.toolchain.cmake'
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y libarchive-dev libssl-dev autoconf libtool pkg-config cmake make gcc g++
|
|
${{ env.build_command }}
|
|
|
|
- name: run_gtest
|
|
if: matrix.toolchain == 'host.toolchain.cmake'
|
|
run: |
|
|
cd ${{ github.workspace }}
|
|
cmake --build build --config ${{ matrix.build_type }} --target test
|
|
|
|
- name: build-host-afl
|
|
if: matrix.toolchain == 'host-afl.toolchain.cmake'
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y libarchive-dev libssl-dev autoconf libtool pkg-config afl++ cmake make gcc g++
|
|
export AFL_LLVM_LAF_ALL=1
|
|
export CC=/usr/bin/afl-clang-fast
|
|
export CXX=/usr/bin/afl-clang-fast++
|
|
export CUSTOM_CMAKE_ARGS="-DULIB_BUILD_TESTS=ON"
|
|
${{ env.build_command }}
|
|
|
|
- name: build-in-container
|
|
uses: addnab/docker-run-action@v3
|
|
if: matrix.toolchain != 'host.toolchain.cmake' && matrix.toolchain != 'host-afl.toolchain.cmake'
|
|
with:
|
|
image: tqcq/ubuntu:hisi
|
|
options: --rm --volumes-from ${{ env.JOB_CONTAINER_NAME }}
|
|
run: |
|
|
cd ${{ github.workspace }}
|
|
sudo apt-get update
|
|
sudo apt-get install -y libarchive-dev libssl-dev autoconf libtool pkg-config cmake make gcc g++
|
|
${{ env.build_command }}
|