try to add more build

pull/296/head
mpromonet 2 years ago
parent 5e56bb1b89
commit f10d62512f

@ -0,0 +1,34 @@
name: C/C++ CI linux cross compilation armhf
on: [push]
jobs:
build:
strategy:
matrix:
buildtype: [Debug, Release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: pkg
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends ca-certificates xz-utils cmake make pkg-config git wget g++-arm-linux-gnueabihf
- name: build
run: |
cmake -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DCMAKE_SYSTEM_PROCESSOR=armhf -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_C_COMPILER=arm-linux-gnueabihf-gcc -DCMAKE_CXX_COMPILER=arm-linux-gnueabihf-g++ -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/aarch64-linux-gnu .
make
- name: cpack
run: |
cpack
echo "artifactPath=$(ls *.deb)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: ${{ env.artifactPath }}
path: ${{ env.artifactPath }}

@ -0,0 +1,34 @@
name: C/C++ CI linux cross compilation mips
on: [push]
jobs:
build:
strategy:
matrix:
buildtype: [Debug, Release]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: pkg
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends ca-certificates xz-utils cmake make pkg-config git wget g++-mips-linux-gnu
- name: build
run: |
cmake -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DCMAKE_SYSTEM_PROCESSOR=armhf -DCMAKE_SYSTEM_NAME=Linux -DCMAKE_C_COMPILER=mips-linux-gnu-gcc -DCMAKE_CXX_COMPILER=mips-linux-gnu-g++ -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_LIBRARY=ONLY -DCMAKE_FIND_ROOT_PATH_MODE_PACKAGE=ONLY -DCMAKE_FIND_ROOT_PATH=/usr/aarch64-linux-gnu .
make
- name: cpack
run: |
cpack
echo "artifactPath=$(ls *.deb)" >> $GITHUB_ENV
- uses: actions/upload-artifact@v3
with:
name: ${{ env.artifactPath }}
path: ${{ env.artifactPath }}
Loading…
Cancel
Save