ulib/.gitea/workflows/build.yaml

83 lines
3.1 KiB
YAML
Raw Normal View History

2023-12-05 10:05:36 +08:00
name: rpcrypto-build
on:
- push
2023-12-05 14:57:10 +08:00
- pull_request
2023-12-05 10:05:36 +08:00
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.toolchain.cmake
- host-afl.toolchain.cmake
- hisiv500.toolchain.cmake
- hisiv510.toolchain.cmake
- himix200.toolchain.cmake
- mips64el-linux-gnuabi64.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 \
2023-12-05 15:52:30 +08:00
-DCMAKE_VERBOSE_MAKEFILE=ON ${CUSTOM_CMAKE_ARGS}
2023-12-05 10:05:36 +08:00
cmake --build build --config ${{ matrix.build_type }} --target all -- -j `nproc`
cmake --build build --config ${{ matrix.build_type }} --target install
steps:
# - name: Install Dependencies
# run: |
# apt-get update -y
# apt-get install -y \
# cmake make g++ libssl-dev pkg-config autoconf libtool
- uses: actions/checkout@v4
# - name: configure
# run: cmake . -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
# - name: build
# run: cmake --build build --config ${{ matrix.build_type }} --target all -- -j `nproc`
- name: build
if: matrix.toolchain == 'host.toolchain.cmake'
run: |
2023-12-05 14:31:13 +08:00
sudo apt-get update -y
sudo apt-get install -y libarchive-dev libssl-dev autoconf libtool pkg-config cmake make gcc g++
2023-12-05 15:52:30 +08:00
${{ env.build_command }}
2023-12-05 15:46:14 +08:00
- name: run_gtest
if: matrix.toolchain == 'host.toolchain.cmake'
run: |
cd ${{ github.workspace }}
cmake --build build --config ${{ matrix.build_type }} --target test
2023-12-05 10:05:36 +08:00
- name: build-afl
if: matrix.toolchain == 'host-afl.toolchain.cmake'
run: |
2023-12-05 14:43:11 +08:00
sudo apt-get update -y
sudo apt-get install -y libarchive-dev libssl-dev autoconf libtool pkg-config afl++ cmake make gcc g++
2023-12-05 10:05:36 +08:00
export AFL_LLVM_LAF_ALL=1
export CC=/usr/bin/afl-clang-fast
export CXX=/usr/bin/afl-clang-fast++
2023-12-05 15:52:30 +08:00
export CUSTOM_CMAKE_ARGS="-DULIB_BUILD_TESTS=ON"
2023-12-05 10:05:36 +08:00
${{ env.build_command }}
- name: build-in-centos
uses: addnab/docker-run-action@v3
if: matrix.toolchain != 'host.toolchain.cmake' && matrix.toolchain != 'host-afl.toolchain.cmake'
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
${{ env.build_command }}